You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Declare variables to be passed into your templates.
4
-
5
-
# Note: paragraphs starting with `# --` will end up in our manual -
6
-
# see https://github.com/norwoodj/helm-docs
7
1
replicaCount: 1
8
2
image:
9
-
# FIXME check the app name
10
3
repository: ghcr.io/weaveworks/wego-app
11
4
pullPolicy: IfNotPresent
12
-
# Overrides the image tag whose default is the chart appVersion.
13
-
tag: "v0.39.0-rc.2"# x-release-please-version
5
+
tag: 0.39.0-rc.3
14
6
imagePullSecrets: []
15
-
nameOverride: ""
16
-
fullnameOverride: ""
17
-
# -- What log level to output. Valid levels are 'debug', 'info', 'warn' and 'error'
7
+
nameOverride: ''
8
+
fullnameOverride: ''
18
9
logLevel: info
19
-
# -- Additional arguments to pass in to the gitops-server
20
10
additionalArgs: []
21
-
# Any other environment variables:
22
11
envVars:
23
12
- name: WEAVE_GITOPS_FEATURE_TENANCY
24
-
value: "true"
13
+
value: 'true'
25
14
- name: WEAVE_GITOPS_FEATURE_CLUSTER
26
-
value: "false"
27
-
# -- Enable this feature flag if you want to expand Flux Runtime UI with other Weave GitOps components like Policy Agent or TF-Controller.
28
-
# Ensure that Weave GitOps Deployment and CRDs have the label 'app.kubernetes.io/part-of=weave-gitops'. See https://docs.gitops.weaveworks.org/docs/open-source/getting-started/install-OSS for more info.
15
+
value: 'false'
29
16
- name: WEAVE_GITOPS_FEATURE_GITOPS_RUNTIME
30
-
value: "false"
31
-
32
-
# -- Annotations to add to the deployment
17
+
value: 'false'
33
18
annotations: {}
34
-
# Should the 'oidc-auth' secret be created. For a detailed
35
-
# explanation of these attributes please see our documentation:
# -- If non-empty, these additional rules will be appended to the RBAC role and the cluster role.
73
-
# for example,
74
-
# additionalRules:
75
-
# - apiGroups: ["infra.contrib.fluxcd.io"]
76
-
# resources: ["terraforms"]
77
-
# verbs: [ "get", "list", "patch" ]
33
+
viewSecretsResourceNames:
34
+
- cluster-user-auth
35
+
- oidc-auth
78
36
additionalRules: []
79
37
adminUser:
80
-
# -- Whether the local admin user should be created.
81
-
# If you use this make sure you add it to `rbac.impersonationResourceNames`.
82
38
create: false
83
-
# -- Specifies whether the clusterRole & binding to the admin user should be created.
84
-
# Will be created only if `adminUser.create` is enabled. Without this,
85
-
# the adminUser will only be able to see resources in the target namespace.
86
39
createClusterRole: true
87
-
# -- Whether we should create the secret for the local
88
-
# adminUser. Will be created only if `adminUser.create` is
89
-
# enabled. Without this, we'll still set up the roles and
90
-
# permissions, but the secret with username and password has to be
91
-
# provided separately.
92
40
createSecret: true
93
-
# -- Set username for local admin user, this should match the value in the secret `cluster-user-auth`
94
-
# which can be created with `adminUser.createSecret`. Requires `adminUser.create`.
95
41
username: gitops-test-user
96
-
# -- (string) Set the password for local admin user. Requires `adminUser.create` and `adminUser.createSecret`
97
-
# This needs to have been hashed using bcrypt.
98
-
# You can do this via our CLI with `gitops get bcrypt-hash`.
99
-
passwordHash:
42
+
passwordHash: null
100
43
podAnnotations: {}
101
44
podLabels: {}
102
-
# aadpodidbinding: identity
103
45
podSecurityContext: {}
104
-
# fsGroup: 2000
105
-
106
46
securityContext:
107
47
runAsNonRoot: true
108
48
allowPrivilegeEscalation: false
@@ -117,94 +57,29 @@ service:
117
57
create: true
118
58
type: ClusterIP
119
59
port: 9001
120
-
# nodePort:
121
60
annotations: {}
122
61
ingress:
123
62
enabled: false
124
-
className: ""
63
+
className: ''
125
64
annotations: {}
126
-
# kubernetes.io/ingress.class: nginx
127
-
# kubernetes.io/tls-acme: "true"
128
-
hosts:
129
-
# - host: chart-example.local
130
-
# paths:
131
-
# - path: /
132
-
# pathType: ImplementationSpecific
133
-
#
65
+
hosts: null
134
66
tls: []
135
-
# - secretName: chart-example-tls
136
-
# hosts:
137
-
# - chart-example.local
138
67
extraVolumes: []
139
68
extraVolumeMounts: []
140
-
# Example using extraVolumes and extraVolumeMounts to load 'oidc-auth' secret
141
-
# with a secrets store CSI driver. Specify the secretName 'oidc-auth' in the
142
-
# secretProviderClass so this will be created by the secrets store CSI driver.
143
-
# See https://secrets-store-csi-driver.sigs.k8s.io/topics/sync-as-kubernetes-secret.html
144
-
# extraVolumeMounts:
145
-
# - name: ww-gitops-oauth-volume
146
-
# mountPath: /mnt/secrets
147
-
# readOnly: true
148
-
# extraVolumes:
149
-
# - name: ww-gitops-oauth-volume
150
-
# csi:
151
-
# driver: secrets-store.csi.k8s.io
152
-
# readOnly: true
153
-
# volumeAttributes:
154
-
# secretProviderClass: ww-gitops-oauth-provider
155
69
resources: {}
156
-
# We usually recommend not to specify default resources and to leave this as a conscious
157
-
# choice for the user. This also increases chances charts run on environments with little
158
-
# resources, such as Minikube. If you do want to specify resources, uncomment the following
159
-
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
160
-
# limits:
161
-
# cpu: 100m
162
-
# memory: 128Mi
163
-
# requests:
164
-
# cpu: 100m
165
-
# memory: 128Mi
166
-
167
70
networkPolicy:
168
-
# -- Specifies whether default network policies should be created.
169
71
create: true
170
72
nodeSelector: {}
171
73
tolerations: []
172
74
affinity: {}
173
75
serverTLS:
174
-
# -- Enable TLS termination in gitops itself. If you enable this,
175
-
# you need to create a secret, and specify the secretName. Another
176
-
# option is to create an ingress.
177
76
enable: false
178
-
# -- Specify the tls secret name. This type of secrets have a key called `tls.crt` and `tls.key` containing their corresponding values in base64 format.
179
-
# See
180
-
# https://kubernetes.io/docs/concepts/configuration/secret/#tls-secrets for more details and examples
181
-
secretName: "my-secret-tls"
182
-
# Example of tls secret
183
-
#
184
-
# apiVersion: v1
185
-
# kind: Secret
186
-
# metadata:
187
-
# name: my-secret-tls
188
-
# type: kubernetes.io/tls
189
-
# data:
190
-
# # the data is abbreviated in this example
191
-
# tls.crt: |
192
-
# MIIC2DCCAcCgAwIBAgIBATANBgkqh ...
193
-
# tls.key: |
194
-
# MIIEpgIBAAKCAQEA7yn3bRHQ5FHMQ ...
195
-
#
196
-
# You can also create a tls secre t from files whith this k8s command:
0 commit comments