* 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>
based on dpage/pgadmin4
pgAdmin
pgAdmin is the leading Open Source management tool for Postgres, the world’s most advanced Open Source database. pgAdmin is designed to meet the needs of both novice and experienced Postgres users alike, providing a powerful graphical interface that simplifies the creation, maintenance and use of database objects.
TL;DR;
$ helm install stable/pgadmin
Introduction
This chart bootstraps a pgAdmin deployment on a Kubernetes cluster using the Helm package manager.
Install the Chart
To install the chart with the release name my-release:
$ helm install --name my-release stable/pgadmin
The command deploys pgAdmin on the Kubernetes cluster in the default configuration. The configuration section lists the parameters that can be configured durign installation.
Tip
: List all releases using
helm list
Uninstall the Chart
To uninstall/delete the my-release deployment:
helm delete --purge my-release
The command removes nearly all the Kubernetes components associated with the chart and deletes the release.
Configuration
| Parameter | Description | Default |
|---|---|---|
replicaCount |
Number of pgadmin replicas | 1 |
image.repository |
Docker image | dpage/pgadmin4 |
image.tag |
Docker image tag | 4.18 |
image.pullPolicy |
Docker image pull policy | IfNotPresent |
service.type |
Service type (ClusterIP, NodePort or LoadBalancer) | ClusterIP |
service.port |
Service port | 80 |
strategy |
Specifies the strategy used to replace old Pods by new ones | {} |
serverDefinitions.enabled |
Enables Server Definitions | false |
serverDefinitions.servers |
Pre-configured server parameters | `` |
ingress.enabled |
Enables Ingress | false |
ingress.annotations |
Ingress annotations | {} |
ingress.hosts |
Ingress accepted hostnames | nil |
ingress.tls |
Ingress TLS configuration | [] |
ingress.path |
Ingress path mapping | `` |
env.email |
pgAdmin default email | chart@example.local |
env.password |
pgAdmin default password | SuperSecret |
persistentVolume.enabled |
If true, pgAdmin will create a Persistent Volume Claim | true |
persistentVolume.accessMode |
Persistent Volume access Mode | ReadWriteOnce |
persistentVolume.size |
Persistent Volume size | 10Gi |
persistentVolume.storageClass |
Persistent Volume Storage Class | unset |
securityContext |
Custom security context for pgAdmin containers | `` |
resources |
CPU/memory resource requests/limits | {} |
livenessProbe |
liveness probe initial delay and timeout | `` |
readinessProbe |
readiness probe initial delay and timeout | `` |
nodeSelector |
Node labels for pod assignment | {} |
tolerations |
Node tolerations for pod assignment | [] |
affinity |
Node affinity for pod assignment | {} |
env.email |
pgAdmin default email | chart@example.local |
env.password |
pgAdmin default password | SuperSecret |
env.enhanced_cookie_protection |
Allows pgAdmin4 to create session cookies based on IP address | "False" |
Specify each parameter using the --set key=value[,key=value] argument to helm install. For example:
$ helm install stable/pgadmin --name my-release \
--set env.password=SuperSecret
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example:
$ helm install stable/pgadmin --name my-release -f values.yaml
Tip
: You can use the default values.yaml