mirror of
https://github.com/helm/charts.git
synced 2026-08-19 20:37:05 +00:00
* [stable/pgadmin] Update image v4.14 to v4.15 (#19028)
* [stable/pgadmin] Update image v4.14 to v4.15
Signed-off-by: Rowan Ruseler <rowanruseler@gmail.com>
* chart version bump
Signed-off-by: Rowan Ruseler <rowanruseler@gmail.com>
Signed-off-by: Marc Rodriguez-Estivill <mrodriguezestivill@gmail.com>
* Added failureThreshold on livenessProbe
Signed-off-by: Marc Rodriguez-Estivill <mrodriguezestivill@gmail.com>
* bump version to 0.4.1
Signed-off-by: Marc Rodriguez-Estivill <mrodriguezestivill@gmail.com>
* Revert "[stable/pgadmin] Update image v4.14 to v4.15 (#19028)"
This reverts commit a23341e868.
Signed-off-by: Marc Rodriguez-Estivill <mrodriguezestivill@gmail.com>
* added timeoutSeconds
Signed-off-by: Marc Rodriguez-Estivill <mrodriguezestivill@gmail.com>
Co-authored-by: rowanr <rowanruseler@gmail.com>
84 lines
1.4 KiB
YAML
Executable File
84 lines
1.4 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
|
|
timeoutSeconds: 5
|
|
livenessProbe:
|
|
path: "/sample"
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 30
|
|
failureThreshold: 6
|
|
timeoutSeconds: 5
|
|
|
|
resources: {}
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 256Mi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 256Mi
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|