mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* 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>
81 lines
1.3 KiB
YAML
Executable File
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: {}
|