Files
deprecated-helm-charts/stable/tomcat/values.yaml
T
Hongliang Wang 3e397e4e9d [stable/tomcat] allow more customizations (#16238)
* Allow more customizations for tomcat chart

Signed-off-by: Hongliang Wang <hongliangwang@yunify.com>

* Remove Hard-coded hostPort

Signed-off-by: Hongliang Wang <hongliangwang@yunify.com>

* Address comments for tomcat chart

Signed-off-by: Hongliang Wang <hongliangwang@yunify.com>

* Address comments for tomcat chart

Signed-off-by: Hongliang Wang <hongliangwang@yunify.com>

* Update documentation for tomcat chart

Signed-off-by: Hongliang Wang <hongliangwang@yunify.com>
2019-09-24 09:59:28 -07:00

81 lines
1.3 KiB
YAML
Executable File

# Default values for the chart.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
webarchive:
repository: ananwaresystems/webarchive
tag: "1.0"
tomcat:
repository: tomcat
tag: "7.0"
pullPolicy: IfNotPresent
pullSecrets: []
deploy:
directory: /usr/local/tomcat/webapps
service:
name: http
type: LoadBalancer
externalPort: 80
internalPort: 8080
hostPort: 8009
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
path: /
hosts:
- chart-example.local
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
env: []
# - name: env
# value: test
extraVolumes: []
# - name: extra
# emptyDir: {}
extraVolumeMounts: []
# - name: extra
# mountPath: /usr/local/tomcat/webapps/app
# readOnly: true
extraInitContainers: []
# - name: do-something
# image: busybox
# command: ['do', 'something']
readinessProbe:
path: "/sample"
initialDelaySeconds: 60
periodSeconds: 30
failureThreshold: 6
livenessProbe:
path: "/sample"
initialDelaySeconds: 60
periodSeconds: 30
resources: {}
# limits:
# cpu: 100m
# memory: 256Mi
# requests:
# cpu: 100m
# memory: 256Mi
nodeSelector: {}
tolerations: []
affinity: {}