Files
ABI CHAHINEandGitHub e9b01ec1fd [stable/pgadmin] Pr modifies pgadmin to accept enhanced_cookie_protection env to fix ingress issue #18568 (#21045)
* False and True should be forced otherwise it will be interpreted as boolean

Signed-off-by: Rachad Abi Chahine <rachad.abi-chahine@hotmail.fr>

* updates enhanced_cookie_protection

Signed-off-by: Rachad Abi Chahine <rachad.abi-chahine@hotmail.fr>

* adds the documentation of enhanced_cookie_protection in pgadmin

Signed-off-by: Rachad Abi Chahine <rachad.abi-chahine@hotmail.fr>

* as discussed I upgrade to 1.2.2

Signed-off-by: Rachad Abi Chahine <rachad.abi-chahine@hotmail.fr>

* Updates README.md to adds default env variables

Signed-off-by: Rachad Abi Chahine <rachad.abi-chahine@hotmail.fr>

* the value of enhanced_cookie_protection should be double quoted

Signed-off-by: Rachad Abi Chahine <rachad.abi-chahine@hotmail.fr>

* update README.md : the value of enhanced_cookie_protection should be double quoted

Signed-off-by: Rachad Abi Chahine <rachad.abi-chahine@hotmail.fr>
2020-02-29 02:54:39 -08:00

157 lines
3.7 KiB
YAML

# Default values for pgadmin.
replicaCount: 1
## pgAdmin container image
##
image:
repository: dpage/pgadmin4
tag: 4.18
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
## Strategy used to replace old Pods by new ones
## Ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
##
strategy: {}
# type: RollingUpdate
# rollingUpdate:
# maxSurge: 0
# maxUnavailable: 1
## Server definitions will be loaded at launch time. This allows connection
## information to be pre-loaded into the instance of pgAdmin in the container.
## Ref: https://www.pgadmin.org/docs/pgadmin4/4.13/import_export_servers.html
##
serverDefinitions:
## If true, server definitions will be created
##
enabled: false
servers: |-
# "1": {
# "Name": "Minimally Defined Server",
# "Group": "Servers",
# "Port": 5432,
# "Username": "postgres",
# "Host": "localhost",
# "SSLMode": "prefer",
# "MaintenanceDB": "postgres"
# }
ingress:
## If true, pgAdmin Ingress will be created
##
enabled: false
## pgAdmin Ingress annotations
##
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
## pgAdmin Ingress hostnames with optional path
## Must be provided if Ingress is enabled
hosts:
- host: chart-example.local
paths: []
## pgAdmin Ingress TLS configuration
## Secrets must be manually created in the namespace
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
## pgAdmin startup configuration
## Values in here get injected as environment variables
##
env:
email: chart@example.local
password: SuperSecret
## If True, allows pgAdmin to create session cookies based on IP address
## Ref: https://www.pgadmin.org/docs/pgadmin4/4.18/config_py.html
#
enhanced_cookie_protection: "False"
persistentVolume:
## If true, pgAdmin will create/use a Persistent Volume Claim
## If false, use emptyDir
##
enabled: true
## pgAdmin Persistent Volume Claim annotations
##
annotations: {}
## pgAdmin Persistent Volume access modes
## Must match those of existing PV or dynamic provisioner
## Ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
accessModes:
- ReadWriteOnce
## pgAdmin Persistent Volume Size
##
size: 10Gi
## pgAdmin Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# storageClass: "-"
# existingClaim: ""
## Security context to be added to pgAdmin pods
##
securityContext:
runAsUser: 5050
runAsGroup: 5050
fsGroup: 5050
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
## pgAdmin readiness and liveness probe initial delay and timeout
## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
##
livenessProbe:
initialDelaySeconds: 30
periodSeconds: 60
timeoutSeconds: 15
successThreshold: 1
failureThreshold: 3
readinessProbe:
initialDelaySeconds: 30
periodSeconds: 60
timeoutSeconds: 15
successThreshold: 1
failureThreshold: 3
## Node labels for pgAdmin pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## Node tolerations for server scheduling to nodes with taints
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
##
tolerations: []
## Pod affinity
##
affinity: {}