diff --git a/charts/cups-airprint/Chart.yaml b/charts/cups-airprint/Chart.yaml index 5e2dfc9..595c301 100644 --- a/charts/cups-airprint/Chart.yaml +++ b/charts/cups-airprint/Chart.yaml @@ -15,7 +15,7 @@ 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: 0.1.6 +version: 0.1.7 # 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 diff --git a/charts/cups-airprint/templates/service.yaml b/charts/cups-airprint/templates/service.yaml index bd4f017..32ea402 100644 --- a/charts/cups-airprint/templates/service.yaml +++ b/charts/cups-airprint/templates/service.yaml @@ -12,6 +12,10 @@ spec: targetPort: http protocol: TCP name: http + {{- if .Values.service.externalIPs.enabled }} + externalIPs:{{- range .Values.service.externalIPs.ip }} + - {{.}}{{- end }} + {{- end }} selector: {{- include "cups-airprint.selectorLabels" . | nindent 4 }} {{- end }} diff --git a/charts/cups-airprint/values.yaml b/charts/cups-airprint/values.yaml index 32b1c66..a1c5bb4 100644 --- a/charts/cups-airprint/values.yaml +++ b/charts/cups-airprint/values.yaml @@ -51,7 +51,9 @@ service: enabled: true type: ClusterIP port: 631 - + externalIPs: + enabled: false + ingress: enabled: false annotations: {}