blob: 725945f0506576e0e9473ada6ea8a21b28b8dc7f [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
13# watchNamespace:
14
15# set if operator should be deployed in cluster wide mode. defaults to false
16watchAllNamespaces: false
17
Oleksandr K249d3db2023-12-06 16:35:23 +010018# rbac: settings for deployer RBAC creation
19rbac:
20 # rbac.create: if false RBAC resources should be in place
21 create: true
22
23# serviceAccount: settings for Service Accounts used by the deployer
24serviceAccount:
25 # serviceAccount.create: Whether to create the Service Accounts or not
26 create: true
27
Mohammed Nasere04accd2023-01-15 20:07:27 -050028# set if you want to use a different operator name
29# defaults to `percona-xtradb-cluster-operator`
30# operatorName:
31
Mohammed Nasere04accd2023-01-15 20:07:27 -050032imagePullSecrets: []
33nameOverride: ""
34fullnameOverride: ""
35
36resources:
37 # We usually recommend not to specify default resources and to leave this as a conscious
38 # choice for the user. This also increases chances charts run on environments with little
39 # resources, such as Minikube. If you don't want to specify resources, comment the following
40 # lines and add the curly braces after 'resources:'.
41 limits:
42 cpu: 200m
43 memory: 500Mi
44 requests:
45 cpu: 100m
46 memory: 20Mi
47
Oleksandr K249d3db2023-12-06 16:35:23 +010048containerSecurityContext: {}
49
Mohammed Nasere04accd2023-01-15 20:07:27 -050050nodeSelector: {}
51
52tolerations: []
53
54affinity: {}
okozachenko1203b7c2d322023-07-05 11:09:15 +000055
56logStructured: false
57logLevel: "INFO"
58disableTelemetry: false