aboutsummaryrefslogtreecommitdiffstats
path: root/rpi/unbound-deployment.yaml
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2021-05-14 18:14:50 +0000
committerterminaldweller <thabogre@gmail.com>2021-05-14 18:14:50 +0000
commit6e528248414e330c9e25e81596ab47b8b8a5b701 (patch)
treee1aa41a7f3198eeac187e6177ec7d4a33db229d3 /rpi/unbound-deployment.yaml
downloadscripts-6e528248414e330c9e25e81596ab47b8b8a5b701.tar.gz
scripts-6e528248414e330c9e25e81596ab47b8b8a5b701.zip
first commitmaster
Diffstat (limited to '')
-rw-r--r--rpi/unbound-deployment.yaml35
1 files changed, 35 insertions, 0 deletions
diff --git a/rpi/unbound-deployment.yaml b/rpi/unbound-deployment.yaml
new file mode 100644
index 0000000..26f8997
--- /dev/null
+++ b/rpi/unbound-deployment.yaml
@@ -0,0 +1,35 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: unbound
+ lables:
+ app: unbound
+spec:
+ replicas: 1
+ selctor:
+ matchlabels:
+ app: unbound
+ template:
+ metadata:
+ labels:
+ app: unbound
+ spec:
+ containers:
+ - name: unbound
+ image: klutchell/unbound
+ ports:
+ - containerPort: 53
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: unbound-service
+spec:
+ selector:
+ app: unbound
+ type: LoadBalancer
+ ports:
+ - protocol: UDP
+ port: 53
+ targetPort: 53
+ nodePort: 53