Files
helm-charts/adguardhome/templates/service-http.yaml
T

17 lines
330 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}-service
labels:
app.kubernetes.io/name: {{ .Chart.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
type: ClusterIP
selector:
app: {{ .Release.Name }}
ports:
- name: http
port: 80
targetPort: 80
protocol: TCP