mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* [stable/tomcat] Allow specifying image.pullSecrets Signed-off-by: Martin Mauch <martin.mauch@gmail.com> * [stable/tomcat] Automatically copy WARs from sidecar Signed-off-by: Martin Mauch <martin.mauch@gmail.com> * [stable/tomcat] Make sidecar an initContainer as per the updated README from the official Kubernetes examples. Signed-off-by: Martin Mauch <martin.mauch@gmail.com> * [stable/tomcat] Use httpGet as readiness & liveness probe This is more correct and also works on newer Tomcat versions where the example index.html is located in a different directory. Signed-off-by: Martin Mauch <martin.mauch@gmail.com> * [tomcat/stable] Bump to 0.2.0 Signed-off-by: Martin Mauch <martin.mauch@gmail.com>
61 lines
1.0 KiB
YAML
61 lines
1.0 KiB
YAML
# 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
|
|
|
|
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
|
|
|
|
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: {}
|