deployment/service with socat proxy that works around my internet provider's medling into dns traffic on port 53.
17 lines
278 B
YAML
17 lines
278 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: dns-update-proxy
|
|
namespace: cert-manager
|
|
spec:
|
|
selector:
|
|
app: dns-update-proxy
|
|
ports:
|
|
- name: dns-tcp
|
|
port: 53
|
|
targetPort: 53
|
|
protocol: TCP
|
|
- name: dns-udp
|
|
port: 53
|
|
targetPort: 53
|
|
protocol: UDP |