aboutsummaryrefslogtreecommitdiff
path: root/helm/templates/service.yaml
diff options
context:
space:
mode:
authorpeter <[email protected]>2021-01-21 19:48:05 -0800
committerpeter <[email protected]>2021-01-21 19:48:05 -0800
commit5561b08e6ab58209cb1a5febd57c355e01530f67 (patch)
treecd8f814d2db614e06ee19f4e81998668755e9fc4 /helm/templates/service.yaml
parentupdate to reflect more latest changes (diff)
downloaddocker-osx-5561b08e6ab58209cb1a5febd57c355e01530f67.tar.xz
docker-osx-5561b08e6ab58209cb1a5febd57c355e01530f67.zip
add gpu passthrough support as well as dynamic OpenCore regeneration
Diffstat (limited to 'helm/templates/service.yaml')
-rw-r--r--helm/templates/service.yaml10
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 }}