Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
Signed-off-by: walnuts1018 <[email protected]>
  • Loading branch information
walnuts1018 committed Nov 1, 2024
1 parent bd3e110 commit 3376bfd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion k8s/common/application-with-helm.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
chart:: error 'chart is required',
repoURL:: error 'repoURL is required',
targetRevision:: error 'targetRevision is required',
values:: error 'values is required',
values:: '',
valuesObject:: {},

apiVersion: 'argoproj.io/v1alpha1',
kind: 'Application',
Expand All @@ -31,6 +32,7 @@
helm: {
releaseName: 'argocd',
values: $.values,
valuesObject: $.valuesObject,
},
},
},
Expand Down
3 changes: 2 additions & 1 deletion k8s/common/oauth2-proxy/helm.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
chart: 'oauth2-proxy',
repoURL: 'https://oauth2-proxy.github.io/manifests',
targetRevision: '7.7.28',
values: (import 'values.libsonnet') {
values: '',
valuesObject: (import 'values.libsonnet') {
upstream: $.upstream,
allowed_groups: $.allowed_groups,
domain: $.domain,
Expand Down

0 comments on commit 3376bfd

Please sign in to comment.