github.com/verrazzano/verrazzano@v1.7.0/platform-operator/thirdparty/charts/opensearch-operator/values.yaml (about) 1 nameOverride: "" 2 fullnameOverride: "" 3 4 nodeSelector: {} 5 tolerations: [] 6 securityContext: 7 runAsNonRoot: true 8 manager: 9 securityContext: 10 allowPrivilegeEscalation: false 11 extraEnv: [] 12 resources: 13 limits: 14 cpu: 200m 15 memory: 500Mi 16 requests: 17 cpu: 100m 18 memory: 350Mi 19 20 livenessProbe: 21 failureThreshold: 3 22 httpGet: 23 path: /healthz 24 port: 8081 25 periodSeconds: 15 26 successThreshold: 1 27 timeoutSeconds: 3 28 initialDelaySeconds: 10 29 30 readinessProbe: 31 failureThreshold: 3 32 httpGet: 33 path: /readyz 34 port: 8081 35 periodSeconds: 15 36 successThreshold: 1 37 timeoutSeconds: 3 38 initialDelaySeconds: 10 39 40 # Set this to false to disable the experimental parallel recovery in case you are experiencing problems 41 parallelRecoveryEnabled: true 42 43 image: 44 repository: public.ecr.aws/opsterio/opensearch-operator 45 ## tag default uses appVersion from Chart.yaml, to override specify tag tag: "v1.1" 46 tag: "" 47 pullPolicy: "Always" 48 49 ## Optional array of imagePullSecrets containing private registry credentials 50 imagePullSecrets: [] 51 # - secretName 52 53 dnsBase: cluster.local 54 55 # Log level of the operator. Possible values: debug, info, warn, error 56 loglevel: info 57 58 # If a watchNamespace is specified, the manager's cache will be restricted to 59 # watch objects in the desired namespace. Defaults is to watch all namespaces. 60 watchNamespace: 61 62 # Install the Custom Resource Definitions with Helm 63 installCRDs: true 64 65 serviceAccount: 66 # Specifies whether a service account should be created 67 create: true 68 # Override the service account name. Defaults to opensearch-operator-controller-manager 69 name: "" 70 71 kubeRbacProxy: 72 enable: true 73 securityContext: 74 # allowPrivilegeEscalation: false 75 resources: 76 limits: 77 cpu: 50m 78 memory: 50Mi 79 requests: 80 cpu: 25m 81 memory: 25Mi 82 83 livenessProbe: 84 failureThreshold: 3 85 tcpSocket: 86 port: 8443 87 periodSeconds: 15 88 successThreshold: 1 89 timeoutSeconds: 3 90 initialDelaySeconds: 10 91 92 readinessProbe: 93 failureThreshold: 3 94 tcpSocket: 95 port: 8443 96 periodSeconds: 15 97 successThreshold: 1 98 timeoutSeconds: 3 99 initialDelaySeconds: 10 100 101 image: 102 repository: "gcr.io/kubebuilder/kube-rbac-proxy" 103 tag: "v0.12.0"