-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path_default_values.tpl
More file actions
112 lines (94 loc) · 2.31 KB
/
_default_values.tpl
File metadata and controls
112 lines (94 loc) · 2.31 KB
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
{{- define "gitops-operator.default-values" }}
global:
runtime:
name: ''
codefresh:
url: ''
tls:
# -- Custom CA certificates bundle for platform access with ssl
caCerts:
# -- Reference to existing secret
secretKeyRef: {}
replicaCount: 1
# -- Restrict the gitops operator to a single namespace (by the namespace of Helm release)
singleNamespace: false
# -- Codefresh gitops operator crds
crds:
# -- Whether or not to install CRDs
install: true
# -- Keep CRDs if gitops runtime release is uninstalled
keep: false
# -- Annotations on gitops operator CRDs
annotations: {}
# -- Additional labels for gitops operator CRDs
additionalLabels: {}
config:
# -- Task polling interval
taskPollingInterval: 10s
# -- Commit status polling interval
commitStatusPollingInterval: 10s
# -- Workflow monitor polling interval
workflowMonitorPollingInterval: 10s
# -- Maximum number of concurrent releases being processed by the operator (this will not affect the number of releases being processed by the gitops runtime)
maxConcurrentReleases: 100
# -- An optional template for the promotion wrapper (empty default will use the embedded one)
promotionWrapperTemplate: ''
env: {}
image:
registry: ""
repository: quay.io/codefresh/codefresh-gitops-operator
# -- defaults to appVersion
tag: ''
pullPolicy: IfNotPresent
serviceAccount:
create: true
annotations: {}
name: "gitops-operator-controller-manager"
readinessProbe:
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 10
livenessProbe:
failureThreshold: 10
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 10
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
podAnnotations: {}
podLabels: {}
podSecurityContext:
runAsNonRoot: true
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- "ALL"
command: []
extraArgs: []
nodeSelector: {}
tolerations: []
extraVolumes: []
extraVolumeMounts: []
affinity: {}
debug:
enabled: false
image:
registry: registry.k8s.io
repository: pause
tag: 3.10
resources:
limits: {}
requests:
cpu: 100m
memory: 128Mi
promotionTemplate:
serviceAccount:
create: true
annotations: {}
name: "promotion-template"
{{- end }}