forked from SAP/cf-service-operator-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
62 lines (60 loc) · 1.75 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
# -- Override full name
fullnameOverride: ""
# -- Override name
nameOverride: ""
# -- Replica count
replicaCount: 1
image:
# -- Image repository
repository: ghcr.io/sap/cf-service-operator
# -- Image tag (defauls to .Chart.AppVersion)
tag: ""
# -- Image pull policy
pullPolicy: IfNotPresent
# -- Image pull secrets
imagePullSecrets: []
# -- Affinity settings
affinity: {}
# -- Topology spread constraints (if unspecified, default constraints for hostname and zone will be generated)
topologySpreadConstraints: []
# -- Default topology spread policy for hostname
defaultHostNameSpreadPolicy: ScheduleAnyway
# -- Default topology spread policy for zone
defaultZoneSpreadPolicy: ScheduleAnyway
# -- Node selector
nodeSelector: {}
# -- Tolerations
tolerations: []
# -- Priority class
priorityClassName: ""
# -- Pod security context
podSecurityContext: {}
# -- Additional pod annotations
podAnnotations: {}
# -- Additional pod labels
podLabels: {}
# -- Container security context
securityContext: {}
resources:
limits:
# -- Memory limit
memory: 200Mi
# -- CPU limit
cpu: 0.1
requests:
# -- Memory request
memory: 20Mi
# -- CPU request
cpu: 0.01
webhook:
certManager:
# -- Whether to use cert-manager to manage webhook tls
enabled: false
# -- Issuer group (only relevant if enabled is true; if unset, the default cert-manager group is used)
issuerGroup: ""
# -- Issuer kind (only relevant if enabled is true; if unset, the default cert-manager type 'Issuer' is used)
issuerKind: ""
# -- Issuer name (only relevant if enabled is true; if unset, a self-signed issuer is used)
issuerName: ""
# -- Enable SAP binding metadata (per default, can be overridden by annotation per binding object)
enableSapBindingMetadata: false