add-coder

This commit is contained in:
Morten Olsen
2025-09-05 07:04:15 +02:00
parent a44e3cb2be
commit 63e0ef0909
11 changed files with 186 additions and 4 deletions

View File

@@ -11,9 +11,22 @@ spec:
targetPort: 8080
protocol: TCP
name: http
- name: wireguard-udp # TODO: should this be a LB service?
port: 41641
targetPort: 41641
protocol: UDP
selector:
app: '{{ .Release.Name }}'
---
apiVersion: v1
kind: Service
metadata:
name: '{{ .Release.Name }}-headscale'
labels:
app: '{{ .Release.Name }}'
spec:
type: LoadBalancer
ports:
- port: 41641
targetPort: 41641
protocol: UDP
name: wireguard-udp
selector:
app: '{{ .Release.Name }}'