20 lines
316 B
YAML
20 lines
316 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: unbound
|
|
namespace: {{ .namespace }}
|
|
spec:
|
|
clusterIP: {{ .unbound.ip }}
|
|
selector:
|
|
component: unbound
|
|
ports:
|
|
- name: dns
|
|
port: 53
|
|
targetPort: 53
|
|
protocol: UDP
|
|
- name: dns-tcp
|
|
port: 53
|
|
targetPort: 53
|
|
protocol: TCP
|
|
type: ClusterIP
|