mirror of
https://github.com/bitnami/charts.git
synced 2026-03-07 08:07:55 +08:00
70 lines
1.9 KiB
YAML
70 lines
1.9 KiB
YAML
## Global chart image registry
|
|
## Please, note that this registry would be used for all the containers in the chart and dependencies
|
|
##
|
|
# global:
|
|
# registry:
|
|
|
|
## Bitnami Tomcat image version
|
|
## ref: https://hub.docker.com/r/bitnami/tomcat/tags/
|
|
##
|
|
image:
|
|
registry: docker.io
|
|
repository: bitnami/tomcat
|
|
tag: 8.5.34-debian-9
|
|
## 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:
|
|
# - myRegistrKeySecretName
|
|
|
|
## Specify a imagePullPolicy
|
|
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
|
##
|
|
imagePullPolicy: IfNotPresent
|
|
|
|
## Admin user
|
|
## ref: https://github.com/bitnami/bitnami-docker-tomcat#creating-a-custom-user
|
|
##
|
|
tomcatUsername: user
|
|
|
|
## Admin password
|
|
## ref: https://github.com/bitnami/bitnami-docker-tomcat#creating-a-custom-user
|
|
##
|
|
# tomcatPassword:
|
|
|
|
## Expose management services
|
|
## ref: https://github.com/bitnami/charts/tree/master/bitnami/tomcat#configuration
|
|
##
|
|
tomcatAllowRemoteManagement: 0
|
|
|
|
## Kubernetes configuration
|
|
## For minikube, set this to NodePort, elsewhere use LoadBalancer
|
|
##
|
|
serviceType: LoadBalancer
|
|
|
|
## Enable persistence using Persistent Volume Claims
|
|
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
|
|
##
|
|
persistence:
|
|
enabled: true
|
|
## If defined, volume.beta.kubernetes.io/storage-class: <storageClass>
|
|
## Default: volume.alpha.kubernetes.io/storage-class: default
|
|
##
|
|
# storageClass:
|
|
accessMode: ReadWriteOnce
|
|
size: 8Gi
|
|
|
|
## Configure resource requests and limits
|
|
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
|
##
|
|
resources:
|
|
requests:
|
|
memory: 512Mi
|
|
cpu: 300m
|