mirror of
https://github.com/nold360/hive-apps
synced 2025-02-22 17:01:41 +00:00
add(cnpg)
This commit is contained in:
parent
e8cf32db63
commit
d2d75bd3a5
2 changed files with 63 additions and 0 deletions
|
@ -17,3 +17,9 @@ apps:
|
||||||
keys:
|
keys:
|
||||||
- root-user
|
- root-user
|
||||||
- root-password
|
- root-password
|
||||||
|
|
||||||
|
- name: cnpg
|
||||||
|
namespace: cnpg-system
|
||||||
|
repoURL: https://cloudnative-pg.github.io/charts
|
||||||
|
chart: cloudnative-pg
|
||||||
|
targetRevision: 0.16.0
|
||||||
|
|
57
projects/services/values/cnpg.yaml
Normal file
57
projects/services/values/cnpg.yaml
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
replicaCount: 1
|
||||||
|
|
||||||
|
image:
|
||||||
|
repository: ghcr.io/cloudnative-pg/cloudnative-pg
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
# -- Overrides the image tag whose default is the chart appVersion.
|
||||||
|
tag: ""
|
||||||
|
|
||||||
|
crds:
|
||||||
|
create: true
|
||||||
|
|
||||||
|
webhook:
|
||||||
|
port: 9443
|
||||||
|
mutating:
|
||||||
|
create: true
|
||||||
|
failurePolicy: Fail
|
||||||
|
validating:
|
||||||
|
create: true
|
||||||
|
failurePolicy: Fail
|
||||||
|
|
||||||
|
# Operator configuration
|
||||||
|
config:
|
||||||
|
# -- Specifies whether the secret should be created
|
||||||
|
create: true
|
||||||
|
# -- Specifies whether it should be stored in a secret, instead of a configmap
|
||||||
|
secret: false
|
||||||
|
# Examples:
|
||||||
|
# INHERITED_ANNOTATIONS: categories
|
||||||
|
# INHERITED_LABELS: environment, workload, app
|
||||||
|
|
||||||
|
data: {}
|
||||||
|
name: cnpg-controller-manager-config
|
||||||
|
|
||||||
|
# -- Additinal arguments to be added to the operator's args list
|
||||||
|
additionalArgs: []
|
||||||
|
|
||||||
|
serviceAccount:
|
||||||
|
# -- Specifies whether the service account should be created
|
||||||
|
create: true
|
||||||
|
# -- The name of the service account to use.
|
||||||
|
# If not set and create is true, a name is generated using the fullname template
|
||||||
|
name: ""
|
||||||
|
|
||||||
|
# -- Security Context for the whole pod
|
||||||
|
podSecurityContext:
|
||||||
|
runAsNonRoot: true
|
||||||
|
seccompProfile:
|
||||||
|
type: RuntimeDefault
|
||||||
|
# fsGroup: 2000
|
||||||
|
|
||||||
|
resources: {}
|
||||||
|
# limits:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 200Mi
|
||||||
|
# requests:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 100Mi
|
Loading…
Add table
Reference in a new issue