diff options
| author | sickcodes <[email protected]> | 2021-01-22 07:26:29 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-22 07:26:29 +0000 |
| commit | f9ed6660763785788aace3ccbd740f98cb95f25a (patch) | |
| tree | 4dcbeffab8993de6b7270291fca2352402307dcf /helm/templates/service.yaml | |
| parent | Merge pull request #125 from cephasara/master (diff) | |
| parent | add gpu passthrough support as well as dynamic OpenCore regeneration (diff) | |
| download | docker-osx-f9ed6660763785788aace3ccbd740f98cb95f25a.tar.xz docker-osx-f9ed6660763785788aace3ccbd740f98cb95f25a.zip | |
Merge pull request #132 from cephasara/master
Diffstat (limited to 'helm/templates/service.yaml')
| -rw-r--r-- | helm/templates/service.yaml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/helm/templates/service.yaml b/helm/templates/service.yaml index 3161a34..a6383e3 100644 --- a/helm/templates/service.yaml +++ b/helm/templates/service.yaml @@ -18,10 +18,12 @@ spec: targetPort: 5999 protocol: TCP name: vnc - - port: 1359 - targetPort: 1359 - protocol: TCP - name: airmessage + {{- range .Values.service.extraPorts }} + - port: {{ .port }} + targetPort: {{ .targetPort }} + protocol: {{ .protocol }} + name: {{ .name }} + {{- end }} selector: app.kubernetes.io/name: {{ include "docker-osx.name" . }} app.kubernetes.io/instance: {{ .Release.Name }} |