mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 11:35:56 +08:00
cdb16b0411
Signed-off-by: BP <busta.pipes@gmail.com>
43 lines
1.1 KiB
YAML
Executable file
43 lines
1.1 KiB
YAML
Executable file
{{- if eq .Values.TALK_ENABLED "yes" }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace {{ .Values.NAMESPACE }}
|
|
kompose.version: 1.30.0 (9d8dcb518)
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-talk
|
|
name: nextcloud-aio-talk-public
|
|
namespace: {{ .Values.NAMESPACE }}
|
|
spec:
|
|
type: LoadBalancer
|
|
ports:
|
|
- name: "{{ .Values.TALK_PORT }}"
|
|
port: {{ .Values.TALK_PORT }}
|
|
targetPort: {{ .Values.TALK_PORT }}
|
|
- name: {{ .Values.TALK_PORT }}-udp
|
|
port: {{ .Values.TALK_PORT }}
|
|
protocol: UDP
|
|
targetPort: {{ .Values.TALK_PORT }}
|
|
selector:
|
|
io.kompose.service: nextcloud-aio-talk
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace {{ .Values.NAMESPACE }}
|
|
kompose.version: 1.30.0 (9d8dcb518)
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-talk
|
|
name: nextcloud-aio-talk
|
|
namespace: {{ .Values.NAMESPACE }}
|
|
spec:
|
|
ports:
|
|
- name: "8081"
|
|
port: 8081
|
|
targetPort: 8081
|
|
selector:
|
|
io.kompose.service: nextcloud-aio-talk
|
|
{{- end }}
|