blob: 719d77c5a2bb92a6fa954b601aa78760f1ae26c5 [file] [log] [blame]
Mohammed Nasere04accd2023-01-15 20:07:27 -05001# Default values for pxc-operator.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4
5replicaCount: 1
6
7operatorImageRepository: percona/percona-xtradb-cluster-operator
8imagePullPolicy: IfNotPresent
9image: ""
10
11# set if you want to specify a namespace to watch
12# defaults to `.Release.namespace` if left blank
Mohammed Naser65cda132024-05-02 14:34:08 -040013# multiple namespaces can be specified and separated by comma
Mohammed Nasere04accd2023-01-15 20:07:27 -050014# watchNamespace:
Mohammed Naser65cda132024-05-02 14:34:08 -040015# set if you want that watched namespaces are created by helm
16# createNamespace: false
Mohammed Nasere04accd2023-01-15 20:07:27 -050017
18# set if operator should be deployed in cluster wide mode. defaults to false
19watchAllNamespaces: false
20
Oleksandr K249d3db2023-12-06 16:35:23 +010021# rbac: settings for deployer RBAC creation
22rbac:
23 # rbac.create: if false RBAC resources should be in place
24 create: true
25
26# serviceAccount: settings for Service Accounts used by the deployer
27serviceAccount:
28 # serviceAccount.create: Whether to create the Service Accounts or not
29 create: true
30
Mohammed Nasere04accd2023-01-15 20:07:27 -050031# set if you want to use a different operator name
32# defaults to `percona-xtradb-cluster-operator`
33# operatorName:
34
Mohammed Nasere04accd2023-01-15 20:07:27 -050035imagePullSecrets: []
36nameOverride: ""
37fullnameOverride: ""
38
39resources:
40 # We usually recommend not to specify default resources and to leave this as a conscious
41 # choice for the user. This also increases chances charts run on environments with little
42 # resources, such as Minikube. If you don't want to specify resources, comment the following
43 # lines and add the curly braces after 'resources:'.
44 limits:
45 cpu: 200m
46 memory: 500Mi
47 requests:
48 cpu: 100m
49 memory: 20Mi
50
Oleksandr K249d3db2023-12-06 16:35:23 +010051containerSecurityContext: {}
52
Mohammed Nasere04accd2023-01-15 20:07:27 -050053nodeSelector: {}
54
55tolerations: []
56
57affinity: {}
okozachenko1203b7c2d322023-07-05 11:09:15 +000058
Mohammed Naser65cda132024-05-02 14:34:08 -040059podAnnotations: {}
60
okozachenko1203b7c2d322023-07-05 11:09:15 +000061logStructured: false
62logLevel: "INFO"
63disableTelemetry: false
Mohammed Naser65cda132024-05-02 14:34:08 -040064
65extraEnvVars: []
66# - name: http_proxy
67# value: "example-proxy-http"
68# - name: https_proxy
69# value: "example-proxy-https"