mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
16 lines
261 B
YAML
16 lines
261 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: '{{ .Release.Name }}'
|
|
labels:
|
|
app: '{{ .Release.Name }}'
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 80
|
|
targetPort: 8096
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
app: '{{ .Release.Name }}'
|