-
Notifications
You must be signed in to change notification settings - Fork 929
/
Copy pathvalues.yaml
82 lines (78 loc) · 2.36 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
## Default values for charts.
## This is a YAML-formatted file.
## Declare variables to be passed into your templates.
## @param global karmada global config
global:
## @param global.imageRegistry Global Docker image registry
imageRegistry: ""
## E.g.
## imagePullSecrets:
## - myRegistryKeySecretName
imagePullSecrets: []
## @param installCRDs define flag whether to install CRD resources
##
installCRDs: true
kubectl:
## @param image.registry karmada kubectl image registry
## @param image.repository karmada kubectl image repository
## @param image.tag karmada kubectl image tag (immutable tags are recommended)
##
image:
registry: docker.io
repository: bitnami/kubectl
tag: latest
## Specify a imagePullPolicy, defaults to 'IfNotPresent'
pullPolicy: IfNotPresent
## operator manager config
operator:
## @param operator.labels
labels: {}
## @param operator.replicaCount target replicas
replicaCount: 1
## @param operator.podAnnotations
podAnnotations: {}
## @param operator.podLabels
podLabels: {}
## @param image.registry operator image registry
## @param image.repository operator image repository
## @param image.tag operator image tag (immutable tags are recommended)
## @param image.pullPolicy operator image pull policy
## @param image.pullSecrets Specify docker-registry secret names as an array
##
image:
registry: docker.io
repository: karmada/karmada-operator
tag: latest
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## Example:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## @param.resources
resources: {}
# If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
## @param.nodeSelector
nodeSelector: {}
## @param.affinity
affinity: {}
## @param.tolerations
tolerations: []
## @param scheduler.strategy strategy of the scheduler
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 0
maxSurge: 50%