mirror of
https://github.com/bitnami/charts.git
synced 2026-03-08 08:47:24 +08:00
349 lines
9.7 KiB
YAML
349 lines
9.7 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
|
|
# storageClass: myStorageClass
|
|
|
|
## Bitnami DokuWiki image version
|
|
## ref: https://hub.docker.com/r/bitnami/dokuwiki/tags/
|
|
##
|
|
image:
|
|
registry: docker.io
|
|
repository: bitnami/dokuwiki
|
|
tag: 20180422.4.0-debian-10-r0
|
|
## Specify a imagePullPolicy
|
|
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
|
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
|
##
|
|
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
|
|
|
|
## Set to true if you would like to see extra information on logs
|
|
## It turns on Bitnami debugging in minideb-extras-base
|
|
## ref: https://github.com/bitnami/minideb-extras-base
|
|
##
|
|
debug: false
|
|
|
|
## String to partially override dokuwiki.fullname template (will maintain the release name)
|
|
##
|
|
nameOverride:
|
|
|
|
## String to fully override dokuwiki.fullname template
|
|
##
|
|
fullnameOverride:
|
|
|
|
## User of the application
|
|
## ref: https://github.com/bitnami/bitnami-docker-dokuwiki#environment-variables
|
|
##
|
|
dokuwikiUsername: user
|
|
|
|
## Application password
|
|
## Defaults to a random 10-character alphanumeric string if not set
|
|
## ref: https://github.com/bitnami/bitnami-docker-dokuwiki#environment-variables
|
|
##
|
|
dokuwikiPassword: ""
|
|
|
|
## Use an existing secret with the dokuwiki password
|
|
##
|
|
existingSecret: ""
|
|
|
|
## Admin email
|
|
## ref: https://github.com/bitnami/bitnami-docker-dokuwiki#environment-variables
|
|
##
|
|
dokuwikiEmail: user@example.com
|
|
|
|
## User's Full Name
|
|
## ref: https://github.com/bitnami/bitnami-docker-dokuwiki#environment-variables
|
|
##
|
|
dokuwikiFullName: User Name
|
|
|
|
## Name of the Wiki
|
|
## ref: https://github.com/bitnami/bitnami-docker-dokuwiki#environment-variables
|
|
##
|
|
dokuwikiWikiName: My Wiki
|
|
|
|
## Kubernetes svc configuration
|
|
##
|
|
service:
|
|
## Kubernetes svc type
|
|
## For minikube, set this to NodePort, elsewhere use LoadBalancer
|
|
##
|
|
type: LoadBalancer
|
|
## Use serviceLoadBalancerIP to request a specific static IP,
|
|
## otherwise leave blank
|
|
##
|
|
loadBalancerIP:
|
|
# HTTP Port
|
|
port: 80
|
|
# HTTPS Port
|
|
httpsPort: 443
|
|
## Use nodePorts to requets some specific ports when usin NodePort
|
|
## nodePorts:
|
|
## http: <to set explicitly, choose port between 30000-32767>
|
|
## https: <to set explicitly, choose port between 30000-32767>
|
|
##
|
|
nodePorts:
|
|
http: ""
|
|
https: ""
|
|
## 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
|
|
|
|
## Configure the ingress resource that allows you to access the
|
|
## Dokuwiki installation. Set up the URL
|
|
## ref: http://kubernetes.io/docs/user-guide/ingress/
|
|
##
|
|
ingress:
|
|
## Set to true to enable ingress record generation
|
|
##
|
|
enabled: false
|
|
|
|
## The list of hostnames to be covered with this ingress record.
|
|
## Most likely this will be just one host, but in the event more hosts are needed, this is an array
|
|
##
|
|
hosts:
|
|
- name: dokuwiki.local
|
|
|
|
## Set this to true in order to enable TLS on the ingress record
|
|
## A side effect of this will be that the backend dokuwiki service will be connected at port 443
|
|
##
|
|
tls: false
|
|
|
|
## Set this to true in order to add the corresponding annotations for cert-manager
|
|
##
|
|
certManager: false
|
|
|
|
## If TLS is set to true, you must declare what secret will store the key/certificate for TLS
|
|
##
|
|
tlsSecret: dokuwiki.local-tls
|
|
|
|
## Ingress annotations done as key:value pairs
|
|
## 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 tls is set to true, annotation ingress.kubernetes.io/secure-backends: "true" will automatically be set
|
|
## If certManager is set to true, annotation kubernetes.io/tls-acme: "true" will automatically be set
|
|
##
|
|
annotations:
|
|
# kubernetes.io/tls-acme: true
|
|
|
|
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 tlsSecret set further up
|
|
## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set
|
|
##
|
|
## It is also possible to create and manage the certificates outside of this helm chart
|
|
## Please see README.md for more information
|
|
# - name: dokuwiki.local-tls
|
|
# key:
|
|
# certificate:
|
|
|
|
## Enable persistence using Persistent Volume Claims
|
|
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
|
|
##
|
|
persistence:
|
|
enabled: true
|
|
## Dokuwiki data 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:
|
|
accessMode: ReadWriteOnce
|
|
size: 8Gi
|
|
|
|
## SecurityContext configuration for the pods
|
|
##
|
|
podSecurityContext:
|
|
enabled: true
|
|
fsGroup: 1001
|
|
|
|
## SecurityContext configuration for the container
|
|
##
|
|
containerSecurityContext:
|
|
enabled: true
|
|
runAsUser: 1001
|
|
|
|
## Configure resource requests and limits
|
|
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
|
##
|
|
resources:
|
|
requests:
|
|
memory: 512Mi
|
|
cpu: 300m
|
|
|
|
## Configure extra options for liveness and readiness probes
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes)
|
|
##
|
|
livenessProbe:
|
|
enabled: true
|
|
initialDelaySeconds: 120
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 6
|
|
successThreshold: 1
|
|
readinessProbe:
|
|
enabled: true
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 6
|
|
successThreshold: 1
|
|
|
|
## Configuration options for nodeSelector, tolerations and affinity for pod
|
|
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
|
|
##
|
|
nodeSelector: {}
|
|
tolerations: []
|
|
affinity: {}
|
|
|
|
## Override container command
|
|
##
|
|
command:
|
|
|
|
## Override container args
|
|
##
|
|
args:
|
|
|
|
## An array to add extra env vars
|
|
##
|
|
extraEnvVars: []
|
|
|
|
## ConfigMap with extra environment variables
|
|
##
|
|
extraEnvVarsCM:
|
|
|
|
## Secret with extra environment variables
|
|
##
|
|
extraEnvVarsSecret:
|
|
|
|
## Pod annotations
|
|
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
|
|
##
|
|
podAnnotations: {}
|
|
|
|
## Common annotations to add to all Harbor resources (sub-charts are not considered). Evaluated as a template
|
|
##
|
|
commonAnnotations: {}
|
|
|
|
## Common labels to add to all Harbor resources (sub-charts are not considered). Evaluated as a template
|
|
##
|
|
commonLabels: {}
|
|
|
|
## Custom Liveness probe
|
|
##
|
|
customLivenessProbe: {}
|
|
|
|
## Custom Rediness probe
|
|
##
|
|
customReadinessProbe: {}
|
|
|
|
## Extra volumes to add to the deployment
|
|
##
|
|
extraVolumes: []
|
|
|
|
## Extra volume mounts to add to the container
|
|
##
|
|
extraVolumeMounts: []
|
|
|
|
## lifecycleHooks for the container to automate configuration before or after startup.
|
|
##
|
|
lifecycleHooks:
|
|
|
|
## Pod extra labels
|
|
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
|
|
##
|
|
podLabels: {}
|
|
|
|
## Extra sidecar containers to add to the deployment
|
|
##
|
|
sidecars: []
|
|
|
|
## Prometheus Exporter / Metrics
|
|
##
|
|
metrics:
|
|
enabled: false
|
|
image:
|
|
registry: docker.io
|
|
repository: bitnami/apache-exporter
|
|
tag: 0.8.0-debian-10-r100
|
|
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: {}
|
|
|
|
# Add custom certificates and certificate authorities to redmine container
|
|
certificates:
|
|
customCertificate:
|
|
certificateSecret: ""
|
|
chainSecret: {}
|
|
# name: secret-name
|
|
# key: secret-key
|
|
certificateLocation: /etc/ssl/certs/ssl-cert-snakeoil.pem
|
|
keyLocation: /etc/ssl/private/ssl-cert-snakeoil.key
|
|
chainLocation: /etc/ssl/certs/mychain.pem
|
|
customCAs: []
|
|
## Override container command
|
|
##
|
|
command:
|
|
## Override container args
|
|
##
|
|
args:
|
|
# - secret: custom-CA
|
|
# - secret: more-custom-CAs
|
|
## An array to add extra env vars
|
|
##
|
|
extraEnvVars: []
|
|
|
|
## ConfigMap with extra environment variables
|
|
##
|
|
extraEnvVarsCM:
|
|
|
|
## Secret with extra environment variables
|
|
##
|
|
extraEnvVarsSecret:
|
|
|
|
image:
|
|
registry: docker.io
|
|
repository: bitnami/minideb
|
|
tag: buster
|
|
## Specify a imagePullPolicy
|
|
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
|
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
|
##
|
|
pullPolicy: IfNotPresent
|
|
# pullPolicy:
|
|
pullSecrets: []
|
|
# - myRegistryKeySecretName
|
|
|
|
## Array with extra yaml to deploy with the chart. Evaluated as a template
|
|
##
|
|
extraDeploy: []
|