Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade mapproxy image #51

Merged
merged 2 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/mapproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 3.0.0
version: 4.0.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 1.16.0-nginx
appVersion: 2.0.2-alpine-nginx
6 changes: 3 additions & 3 deletions charts/mapproxy/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
livenessProbe:
httpGet:
path: {{ .Values.livenessProbe.url }}
port: http
port: {{ .Values.livenessProbe.port }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
Expand All @@ -49,15 +49,15 @@ spec:
readinessProbe:
httpGet:
path: {{ .Values.readinessProbe.url }}
port: http
port: {{ .Values.readinessProbe.port }}
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
{{- end }}
{{- if .Values.startupProbe.enabled }}
startupProbe:
httpGet:
path: {{ .Values.startupProbe.url }}
port: http
port: {{ .Values.startupProbe.port }}
initialDelaySeconds: {{ .Values.startupProbe.initialDelaySeconds }}
failureThreshold: {{ .Values.startupProbe.failureThreshold }}
periodSeconds: {{ .Values.startupProbe.periodSeconds }}
Expand Down
13 changes: 8 additions & 5 deletions charts/mapproxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,24 +79,27 @@ affinity: {}
# Probes
livenessProbe:
enabled: true
url: /mapproxy/wmts/1.0.0/WMTSCapabilities.xml
failureThreshold: 5
initialDelaySeconds: 15
timeoutSeconds: 3
periodSeconds: 30
failureThreshold: 5
port: 80
timeoutSeconds: 3
url: /mapproxy/wmts/1.0.0/WMTSCapabilities.xml

readinessProbe:
enabled: true
url: /mapproxy/wmts/1.0.0/WMTSCapabilities.xml
initialDelaySeconds: 0
port: 80
timeoutSeconds: 1
url: /mapproxy/wmts/1.0.0/WMTSCapabilities.xml

startupProbe:
enabled: true
url: /mapproxy/wmts/1.0.0/WMTSCapabilities.xml
failureThreshold: 15
initialDelaySeconds: 2
periodSeconds: 10
port: 80
url: /mapproxy/wmts/1.0.0/WMTSCapabilities.xml

# optional existing pvc for persistent mapproxy data
persistence:
Expand Down
Loading