Fixed some references

This commit is contained in:
Jonathan Ervine 2020-08-05 21:43:24 +08:00
parent f3798d680f
commit cdf01e1955
4 changed files with 17 additions and 2 deletions

View File

@ -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.1
version: 0.1.2
# 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

View File

@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "guacamole.fullname" . }}
labels:
{{- include "guacamole.labels" . | nindent 4 }}
spec:
type: {{ .Values.guacd.service.type }}
ports:
- port: {{ .Values.guacd.service.port }}
targetPort: 4822
protocol: TCP
name: http
selector:
{{- include "guacamole.selectorLabels" . | nindent 4 }}

View File

@ -20,7 +20,7 @@ spec:
labels:
{{- include "guacamole.selectorLabels" . | nindent 8 }}
spec:
{{- with .Values.imagePullSecrets }}
{{- with .Values.guacamole.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}