mirror of
https://github.com/bitnami/charts.git
synced 2026-02-28 15:37:42 +08:00
117 lines
3.4 KiB
YAML
117 lines
3.4 KiB
YAML
## Global Docker image parameters
|
|
## Please, note that this will override the image parameters, including dependencies, configured to use the global value
|
|
## Current available global Docker image parameters: imageRegistry and imagePullSecrets
|
|
##
|
|
# global:
|
|
# imageRegistry: myRegistryName
|
|
# imagePullSecrets:
|
|
# - myRegistryKeySecretName
|
|
|
|
## Bitnami WordPress image version
|
|
## ref: https://hub.docker.com/r/bitnami/phpmyadmin/tags/
|
|
##
|
|
image:
|
|
registry: docker.io
|
|
repository: bitnami/phpmyadmin
|
|
tag: 4.8.5-debian-9-r93
|
|
## Specify a imagePullPolicy
|
|
pullPolicy: IfNotPresent
|
|
## Optionally specify an array of imagePullSecrets.
|
|
## Secrets must be manually created in the namespace.
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
|
|
##
|
|
# pullSecrets:
|
|
# - myRegistryKeySecretName
|
|
|
|
## User of the application
|
|
## ref: https://github.com/bitnami/bitnami-docker-phpmyadmin#environment-variables
|
|
##
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
|
|
db:
|
|
## using default mysql port explicitly
|
|
port: 3306
|
|
## if you are deploying it as part of a release, and the db is also in the release
|
|
## you can pass a suffix that will be used to find the DB in releasename-dbSuffix
|
|
## please note that this setting precedes dbHost
|
|
# chartName: mariadb
|
|
# host: foo
|
|
## If you want to test phpMyAdmin, you can set it to bundle a MariaDB
|
|
## instance
|
|
bundleTestDB: false
|
|
|
|
ingress:
|
|
enabled: false
|
|
annotations:
|
|
ingress.kubernetes.io/rewrite-target: /
|
|
nginx.ingress.kubernetes.io/rewrite-target: /
|
|
# kubernetes.io/ingress.class: nginx
|
|
# kubernetes.io/tls-acme: "true"
|
|
## path you want to map the phpmyadmin interface to
|
|
path: /
|
|
# host: foo
|
|
tls: []
|
|
# - secretName: chart-example-tls
|
|
# hosts:
|
|
# - chart-example.local
|
|
|
|
|
|
## Enable liveness and readiness probes
|
|
probesEnabled: true
|
|
|
|
resources: {}
|
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
# choice for the user. This also increases chances charts run on environments with little
|
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
|
|
## Node labels for pod assignment
|
|
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
|
|
##
|
|
nodeSelector: {}
|
|
|
|
## Tolerations for pod assignment
|
|
## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
|
|
##
|
|
tolerations: []
|
|
|
|
## Affinity for pod assignment
|
|
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
|
|
##
|
|
affinity: {}
|
|
|
|
## Pod annotations
|
|
podAnnotations: {}
|
|
|
|
## Prometheus Exporter / Metrics
|
|
##
|
|
metrics:
|
|
enabled: false
|
|
image:
|
|
registry: docker.io
|
|
repository: lusotycoon/apache-exporter
|
|
tag: v0.5.0
|
|
pullPolicy: IfNotPresent
|
|
## Optionally specify an array of imagePullSecrets.
|
|
## Secrets must be manually created in the namespace.
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
|
|
##
|
|
# pullSecrets:
|
|
# - myRegistryKeySecretName
|
|
## Metrics exporter pod Annotation and Labels
|
|
podAnnotations:
|
|
prometheus.io/scrape: "true"
|
|
prometheus.io/port: "9117"
|
|
## Metrics exporter resource requests and limits
|
|
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
|
##
|
|
# resources: {}
|