## @section Global parameters ## 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, imagePullSecrets and storageClass ## @param global.imageRegistry Global Docker image registry ## @param global.imagePullSecrets Global Docker registry secret names as an array ## global: imageRegistry: "" ## E.g. ## imagePullSecrets: ## - myRegistryKeySecretName ## imagePullSecrets: [] ## @section Common parameters ## @param kubeVersion Force target Kubernetes version (using Helm capabilities if not set) ## kubeVersion: "" ## @param nameOverride String to partially override common.names.fullname template (will maintain the release name) ## nameOverride: "" ## @param fullnameOverride String to fully override common.names.fullname template ## fullnameOverride: "" ## @param commonLabels Add labels to all the deployed resources ## commonLabels: {} ## @param commonAnnotations Add annotations to all the deployed resources ## commonAnnotations: {} ## @param clusterDomain Kubernetes Cluster Domain ## clusterDomain: cluster.local ## @param extraDeploy Array of extra objects to deploy with the release ## extraDeploy: [] ## @section phpMyAdmin parameters ## Bitnami WordPress image version ## ref: https://hub.docker.com/r/bitnami/phpmyadmin/tags/ ## @param image.registry phpMyAdmin image registry ## @param image.repository phpMyAdmin image repository ## @param image.tag phpMyAdmin image tag (immutable tags are recommended) ## @param image.pullPolicy Image pull policy ## @param image.pullSecrets Specify docker-registry secret names as an array ## image: registry: docker.io repository: bitnami/phpmyadmin tag: 5.1.1-debian-10-r69 ## 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/ ## Example: ## pullSecrets: ## - myRegistryKeySecretName ## pullSecrets: [] ## @param command Override default container command (useful when using custom images) ## command: [] ## @param args Override default container args (useful when using custom images) ## args: [] ## @param extraEnvVars Extra environment variables to be set on PhpMyAdmin container ## For example: ## extraEnvVars: ## - name: PHP_UPLOAD_MAX_FILESIZE ## value: "80M" ## extraEnvVars: [] ## @param extraEnvVarsCM Name of a existing ConfigMap containing extra env vars ## extraEnvVarsCM: "" ## @param extraEnvVarsSecret Name of a existing Secret containing extra env vars ## extraEnvVarsSecret: "" ## @section phpMyAdmin deployment parameters ## @param hostAliases [array] Deployment pod host aliases ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ ## hostAliases: ## Necessary for apache-exporter to work ## - ip: "127.0.0.1" hostnames: - "status.localhost" ## phpMyAdmin container ports to open ## @param containerPorts.http HTTP port to expose at container level ## @param containerPorts.https HTTPS port to expose at container level ## containerPorts: http: 8080 https: 8443 ## @param updateStrategy.type Strategy to use to update Pods ## updateStrategy: ## StrategyType ## Can be set to RollingUpdate or OnDelete ## type: RollingUpdate ## phpMyAdmin pods' Security Context ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod ## @param podSecurityContext.enabled Enable phpMyAdmin pods' Security Context ## @param podSecurityContext.fsGroup User ID for the container ## podSecurityContext: enabled: true fsGroup: 1001 ## phpMyAdmin containers' Security Context (only main container) ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container ## @param containerSecurityContext.enabled Enable phpMyAdmin containers' Security Context ## @param containerSecurityContext.runAsUser Group ID for the volumes of the pod ## containerSecurityContext: enabled: true runAsUser: 1001 ## phpMyAdmin containers' resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-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:'. ## @param resources.limits The resources limits for the PhpMyAdmin container ## @param resources.requests The requested resources for the PhpMyAdmin container ## resources: ## Example: ## limits: ## cpu: 100m ## memory: 128Mi limits: {} ## Examples: ## requests: ## cpu: 100m ## memory: 128Mi requests: {} ## phpMyAdmin containers' liveness probe. Evaluated as a template. ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes ## @param livenessProbe.enabled Enable livenessProbe ## @param livenessProbe.httpGet.path Request path for livenessProbe ## @param livenessProbe.httpGet.port Port for livenessProbe ## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe ## @param livenessProbe.periodSeconds Period seconds for livenessProbe ## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe ## @param livenessProbe.failureThreshold Failure threshold for livenessProbe ## @param livenessProbe.successThreshold Success threshold for livenessProbe ## livenessProbe: enabled: true initialDelaySeconds: 30 timeoutSeconds: 30 periodSeconds: 10 successThreshold: 1 failureThreshold: 6 httpGet: path: / port: http ## phpMyAdmin containers' readiness probes. Evaluated as a template. ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes ## @param readinessProbe.enabled Enable readinessProbe ## @param readinessProbe.httpGet.path Request path for readinessProbe ## @param readinessProbe.httpGet.port Port for readinessProbe ## @param readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe ## @param readinessProbe.periodSeconds Period seconds for readinessProbe ## @param readinessProbe.timeoutSeconds Timeout seconds for readinessProbe ## @param readinessProbe.failureThreshold Failure threshold for readinessProbe ## @param readinessProbe.successThreshold Success threshold for readinessProbe ## readinessProbe: enabled: true initialDelaySeconds: 30 timeoutSeconds: 30 periodSeconds: 10 successThreshold: 1 failureThreshold: 6 httpGet: path: / port: http ## @param customLivenessProbe Override default liveness probe ## customLivenessProbe: {} ## @param customReadinessProbe Override default readiness probe ## customReadinessProbe: {} ## @param podLabels Extra labels for PhpMyAdmin pods ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ ## podLabels: {} ## @param podAnnotations Annotations for PhpMyAdmin pods ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ ## podAnnotations: {} ## @param podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity ## podAffinityPreset: "" ## @param podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity ## podAntiAffinityPreset: soft ## Node affinity preset ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity ## nodeAffinityPreset: ## @param nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` ## type: "" ## @param nodeAffinityPreset.key Node label key to match. Ignored if `affinity` is set. ## E.g. ## key: "kubernetes.io/e2e-az-name" ## key: "" ## @param nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set. ## E.g. ## values: ## - e2e-az1 ## - e2e-az2 ## values: [] ## @param affinity Affinity for pod assignment. Evaluated as a template. ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity ## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set ## affinity: {} ## @param nodeSelector Node labels for pod assignment. Evaluated as a template. ## ref: https://kubernetes.io/docs/user-guide/node-selection/ ## nodeSelector: {} ## @param tolerations Tolerations for pod assignment. Evaluated as a template. ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ ## tolerations: [] ## @param extraVolumes Optionally specify extra list of additional volumes for PhpMyAdmin pods ## extraVolumes: [] ## @param extraVolumeMounts Optionally specify extra list of additional volumeMounts for PhpMyAdmin container(s) ## extraVolumeMounts: [] ## @param initContainers Add init containers to the PhpMyAdmin pods ## Example: ## initContainers: ## - name: your-image-name ## image: your-image ## imagePullPolicy: Always ## ports: ## - name: portname ## containerPort: 1234 ## initContainers: [] ## @param sidecars Add sidecar containers to the PhpMyAdmin pods ## Example: ## sidecars: ## - name: your-image-name ## image: your-image ## imagePullPolicy: Always ## ports: ## - name: portname ## containerPort: 1234 ## sidecars: [] ## @section Traffic Exposure parameters ## Service configuration ## service: ## @param service.type Kubernetes Service type ## type: ClusterIP ## @param service.port Service HTTP port ## port: 80 ## @param service.httpsPort Service HTTPS port ## httpsPort: 443 ## Specify the nodePort values for the LoadBalancer and NodePort service types ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport ## @param service.nodePorts.http Kubernetes http node port ## @param service.nodePorts.https Kubernetes https node port ## nodePorts: http: "" https: "" ## @param service.clusterIP PhpMyAdmin service clusterIP IP ## e.g: ## clusterIP: None ## clusterIP: "" ## @param service.loadBalancerIP Load balancer IP for the phpMyAdmin Service (optional, cloud specific) ## ref: http://kubernetes.io/docs/user-guide/services/#type-loadbalancer ## loadBalancerIP: "" ## @param service.loadBalancerSourceRanges Addresses that are allowed when service is LoadBalancer ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service ## Example: ## loadBalancerSourceRanges: ## - 10.10.10.0/24 ## loadBalancerSourceRanges: [] ## @param service.externalTrafficPolicy Enable client source IP preservation ## ref http://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip ## externalTrafficPolicy: Cluster ## @param service.annotations Provide any additional annotations that may be required for the PhpMyAdmin service ## annotations: {} ## Ingress configuration ## ingress: ## @param ingress.enabled Set to true to enable ingress record generation ## enabled: false ## @param ingress.certManager Set this to true in order to add the corresponding annotations for cert-manager ## certManager: false ## @param ingress.hostname When the ingress is enabled, a host pointing to this will be created ## hostname: phpmyadmin.local ## @param ingress.pathType Ingress path type ## pathType: ImplementationSpecific ## @param ingress.annotations Ingress annotations ## For a full list of possible ingress annotations, please see ## ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md ## ## If certManager is set to true, annotation kubernetes.io/tls-acme: "true" will automatically be set ## annotations: {} ## @param ingress.tls Enable TLS configuration for the hostname defined at `ingress.hostname` parameter ## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }} ## You can use the ingress.secrets parameter to create this TLS secret, relay on cert-manager to create it, or ## let the chart create self-signed certificates for you ## tls: false ## @param ingress.extraHosts The list of additional hostnames to be covered with this ingress record. ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array ## Example: ## extraHosts: ## - name: phpmyadmin.local ## path: / ## extraHosts: [] ## @param ingress.extraTls The tls configuration for additional hostnames to be covered with this ingress record. ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls ## Example: ## extraTls: ## - hosts: ## - phpmyadmin.local ## secretName: phpmyadmin.local-tls ## extraTls: [] ## @param ingress.secrets If you're providing your own certificates, please use this to add the certificates as secrets ## key and certificate should start with -----BEGIN CERTIFICATE----- or -----BEGIN RSA PRIVATE KEY----- ## name should line up with a secretName set further up ## ## If it is not set and you're using cert-manager, this is unneeded, as it will create the secret for you ## If it is not set and you're NOT using cert-manager either, self-signed certificates will be created ## It is also possible to create and manage the certificates outside of this helm chart ## Please see README.md for more information ## ## Example ## secrets: ## - name: phpmyadmin.local-tls ## key: "" ## certificate: "" ## secrets: [] ## @section Database parameters ## Database configuration ## db: ## @param db.allowArbitraryServer Enable connection to arbitrary MySQL server ## If you do not want the user to be able to specify an arbitrary MySQL server at login time, set this to false ## allowArbitraryServer: true ## @param db.port Database port to use to connect ## port: 3306 ## @param db.chartName Database suffix if included in the same release ## If you are deploying phpMyAdmin as part of a release and the database is part ## of the release, you can pass a suffix that will be used to find the database ## in releasename-dbSuffix. Please note that this setting precedes db.host ## e.g: ## chartName: mariadb ## chartName: "" ## @param db.host Database Hostname. Ignored when `db.chartName` is set. ## e.g: ## host: foo ## host: "" ## @param db.bundleTestDB Deploy a MariaDB instance for testing purposes ## bundleTestDB: false ## @param db.enableSsl Enable SSL for the connection between phpMyAdmin and the database ## enableSsl: false ssl: ## @param db.ssl.clientKey Client key file when using SSL ## clientKey: |- ## @param db.ssl.clientCertificate Client certificate file when using SSL ## clientCertificate: |- ## @param db.ssl.caCertificate CA file when using SSL ## caCertificate: |- ## @param db.ssl.ciphers List of allowable ciphers for connections when using SSL ## ciphers: [] ## @param db.ssl.verify Enable SSL certificate validation ## verify: true ## @param mariadb MariaDB chart configuration ## https://github.com/bitnami/charts/blob/master/bitnami/mariadb/values.yaml ## mariadb: {} ## @section Metrics parameters ## Prometheus Exporter / Metrics ## metrics: ## @param metrics.enabled Start a side-car prometheus exporter ## enabled: false ## @param metrics.image.registry Apache exporter image registry ## @param metrics.image.repository Apache exporter image repository ## @param metrics.image.tag Apache exporter image tag (immutable tags are recommended) ## @param metrics.image.pullPolicy Image pull policy ## @param metrics.image.pullSecrets Specify docker-registry secret names as an array ## image: registry: docker.io repository: bitnami/apache-exporter tag: 0.10.0-debian-10-r26 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/ ## Example: ## pullSecrets: ## - myRegistryKeySecretName ## pullSecrets: [] ## @param metrics.resources Metrics exporter resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: {} ## Prometheus Exporter service configuration ## service: ## @param metrics.service.type Prometheus metrics service type ## type: ClusterIP ## @param metrics.service.port Prometheus metrics service port ## port: 9117 ## @param metrics.service.annotations [object] Annotations for Prometheus metrics service ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ annotations: prometheus.io/scrape: "true" prometheus.io/port: "{{ .Values.metrics.service.port }}" ## @param metrics.service.loadBalancerIP Load Balancer IP if the Prometheus metrics server type is `LoadBalancer` ## Use serviceLoadBalancerIP to request a specific static IP, otherwise leave blank ## loadBalancerIP: "" ## Prometheus Service Monitor ## ref: https://github.com/coreos/prometheus-operator ## https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint ## serviceMonitor: ## @param metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator ## enabled: false ## @param metrics.serviceMonitor.namespace Specify the namespace in which the serviceMonitor resource will be created ## namespace: "" ## @param metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. ## jobLabel: "" ## @param metrics.serviceMonitor.interval Specify the interval at which metrics should be scraped ## interval: 30s ## @param metrics.serviceMonitor.scrapeTimeout Specify the timeout after which the scrape is ended ## e.g: ## scrapeTimeout: 30s ## scrapeTimeout: "" ## @param metrics.serviceMonitor.relabellings Specify Relabellings to add to the scrape endpoint ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig ## relabellings: [] ## @param metrics.serviceMonitor.metricRelabelings Specify Metric Relabelings to add to the scrape endpoint ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig ## metricRelabelings: [] ## @param metrics.serviceMonitor.honorLabels Specify honorLabels parameter to add the scrape endpoint ## honorLabels: false ## @param metrics.serviceMonitor.additionalLabels Used to pass Labels that are required by the installed Prometheus Operator ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#prometheusspec ## additionalLabels: {}