-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvalues.yaml
124 lines (101 loc) · 2.96 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
external-secrets:
replicaCount: 1
image:
repository: ghcr.io/external-secrets/external-secrets
pullPolicy: IfNotPresent
# -- The image tag to use. The default is the chart appVersion.
tag: ""
# -- If set, install and upgrade CRDs through helm chart.
installCRDs: true
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
# -- If true, external-secrets will perform leader election between instances to ensure no more
# than one instance of external-secrets operates at a time.
leaderElect: false
# -- If set external secrets will filter matching
# Secret Stores with the appropriate controller values.
controllerClass: ""
# -- If set external secrets are only reconciled in the
# provided namespace
scopedNamespace: ""
# -- Specifies the number of concurrent ExternalSecret Reconciles external-secret executes at
# a time.
concurrent: 1
serviceAccount:
# -- Specifies whether a service account should be created.
create: true
# -- Annotations to add to the service account.
annotations: {}
# -- The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template.
name: ""
rbac:
# -- Specifies whether role and rolebinding resources should be created.
create: true
## -- Extra environment variables to add to container.
extraEnv: []
## -- Map of extra arguments to pass to container.
extraArgs: {}
# -- Annotations to add to Deployment
deploymentAnnotations: {}
# -- Annotations to add to Pod
podAnnotations: {}
podLabels: {}
podSecurityContext:
{}
# fsGroup: 2000
securityContext:
{}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
resources:
{}
# requests:
# cpu: 10m
# memory: 32Mi
prometheus:
# -- Specifies whether to expose Service resource for collecting Prometheus metrics
enabled: true
service:
port: 8080
nodeSelector: {}
tolerations: []
affinity: {}
# -- Pod priority class name.
priorityClassName: ""
extraObjects:
- apiVersion: external-secrets.io/v1beta1
kind: ClusterSecretStore
metadata:
name: gitlab-secret-store
annotations:
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true
spec:
provider:
gitlab:
auth:
SecretRef:
accessToken:
name: gitlab-secret
namespace: external-secrets
key: token
projectID: "34242337"
- apiVersion: generators.external-secrets.io/v1alpha1
kind: ClusterGenerator
metadata:
name: password
spec:
kind: Password
generator:
passwordSpec:
length: 32
digits: 5
symbols: 5
symbolCharacters: "!@#$%^&*"
noUpper: false
allowRepeat: true