/
githubmirror
/
charts
Обзор
Документация
Войти
/
githubmirror
/
charts
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
stable/couchbase-operator/values.yaml
107 строк
3 KB
Tommie McAfee
[stable/couchbase] Update to version 1.2.2 (#18970)
07 дек 2019, 23:19
07 дек 2019, 23:19
23eb35f
Код
Авторство
О чём код?
# Default values for couchbase-operator chart. # This is a YAML-formatted file. # Declare variables to be passed into your templates. # Install Default RBAC roles and bindings rbac: create: true apiVersion: v1beta1 # grant cluster-wide access to service accounts clusterRoleAccess: true # name of couchbase service account couchbaseServiceAccountName: # name of admission service account admissionServiceAccountName: # Select what to deploy deployments: # couchbaseOperator is the couchbase-operator deployment couchbaseOperator: true # admissionController enforces validation admissionController: true # couchbaseOperator is the controller for couchbase cluster couchbaseOperator: # name of the couchbase operator name: "couchbase-operator" # image config image: repository: couchbase/operator tag: 1.2.2 imagePullPolicy: IfNotPresent # imagePullSecrets is an optional list of references to secrets to use for pulling images imagePullSecrets: [] # additional command arguments will be translated to `--key=value` commandArgs: # Set to false if you are installing the CRD manually create-crd: true # readinessProbe marks pod as ready when readiness port (8080) responds readinessProbe: # initialDelaySeconds is a delay before readiness probe is initiated initialDelaySeconds: 3 # periodSeconds decides how often to perform the probe periodSeconds: 3 # failureThreshold sets Pod status to failure when threshold is reached failureThreshold: 19 # port exposed to check readiness port: 8080 # resources of couchbase-operator resources: cpu: 100m memory: 128Mi # nodeSelector for couchbase-operator pod assignment # Ref: https://kubernetes.io/docs/user-guide/node-selection/ nodeSelector: {} # tolerations of pod match nodes with corresponding taints tolerations: [] # admissionController is the controller for couchbase admission controller # name is derived from chart admissionController: name: "couchbase-admission-controller" image: repository: couchbase/admission-controller tag: 1.2.2 imagePullPolicy: IfNotPresent # imagePullSecrets is an optional list of references to secrets to use for pulling images imagePullSecrets: [] verboseLogging: true # admissionService exposes validation to cluster. This service # is over https and certs are auto-generated based on serviceName. # Use nameOverride when manually creating service, or disable altogether. admissionService: # create determines if service is created create: true # name of the service (auto-generated) name: # port service exposes port: 443 targetPort: 8443 # admissionCA can be used to override the Certs that will be used # to sign the keys used by the admsission operator. admissionCA: # disable if manually creating certs # provide cert and key via --set-file create: true # A base64 encoded PEM format certificate cert: # A base64 encoded PEM format private key key: # Expiry time of CA in days for generated certs expiration: 365 # secret with client certs mounted within the admission controller. admissionSecret: create: true # name of the secret (auto-generated) name: # PEM format certificate (auto-generated) # override via --set-file cert: # PEM format certificate (auto-generated) # override via --set-file key: