Skip to content

Commit

Permalink
Merge pull request #58 from kartoza/develop
Browse files Browse the repository at this point in the history
Merge GeoServer chart changes to main
  • Loading branch information
tharanathkartoza authored Sep 21, 2022
2 parents 56d42ee + bc49a71 commit 53683e3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions charts/geoserver/v0.3.2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ Full list of options can be seen in: https://github.com/kartoza/docker-geoserver
| service.loadBalancerIP | Only used if you use LoadBalancer service.type |
| service.externalIPs | External IPs to use for the service |
| service.port | External port to use/expose |
| affinity | Constrain pods to nodes |
| tolerations | Pod scheduling tolerations |
| ingress.enabled | Switch to true to enable ingress resource |
| ingress.host | The host name/site name the ingress will serve |
| ingress.tls.enabled | Set it to true to enable HTTPS |
Expand Down
8 changes: 8 additions & 0 deletions charts/geoserver/v0.3.2/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,3 +150,11 @@ spec:
- name: geowebcache-cache-dir
emptyDir: {}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{ toYaml . | indent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{ toYaml . | indent 8 }}
{{- end }}
4 changes: 4 additions & 0 deletions charts/geoserver/v0.3.2/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ service:
# loadBalancerSourceRanges:
# - 10.10.10.0/24

affinity: {}

tolerations: {}

ingress:
enabled: false
annotations: {}
Expand Down

0 comments on commit 53683e3

Please sign in to comment.