add external ip for cups

master
Marius Ensrud 5 years ago
parent f39c30387f
commit 1e685d13a9

@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # 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. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.6 version: 0.1.7
# This is the version number of the application being deployed. This version number should be # 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 # incremented each time you make changes to the application. Versions are not expected to

@ -12,6 +12,10 @@ spec:
targetPort: http targetPort: http
protocol: TCP protocol: TCP
name: http name: http
{{- if .Values.service.externalIPs.enabled }}
externalIPs:{{- range .Values.service.externalIPs.ip }}
- {{.}}{{- end }}
{{- end }}
selector: selector:
{{- include "cups-airprint.selectorLabels" . | nindent 4 }} {{- include "cups-airprint.selectorLabels" . | nindent 4 }}
{{- end }} {{- end }}

@ -51,7 +51,9 @@ service:
enabled: true enabled: true
type: ClusterIP type: ClusterIP
port: 631 port: 631
externalIPs:
enabled: false
ingress: ingress:
enabled: false enabled: false
annotations: {} annotations: {}

Loading…
Cancel
Save