aboutsummaryrefslogtreecommitdiff
path: root/nix-personal/k8s
diff options
context:
space:
mode:
authorAria <me@aria.rip>2023-12-06 19:35:40 +0000
committerAria <me@aria.rip>2023-12-06 19:35:40 +0000
commit688b6527809869465c75d9cb3413d8bcce7aff68 (patch)
tree5e361446eda3a153e6315f806748903d6d2a9bc9 /nix-personal/k8s
parentae760a1f14dffca65d98f4daa9ce09e138fd2532 (diff)
get web traffic into vps
Diffstat (limited to 'nix-personal/k8s')
-rw-r--r--nix-personal/k8s/ingress.yaml33
-rw-r--r--nix-personal/k8s/svc.yaml24
2 files changed, 57 insertions, 0 deletions
diff --git a/nix-personal/k8s/ingress.yaml b/nix-personal/k8s/ingress.yaml
new file mode 100644
index 0000000..3849905
--- /dev/null
+++ b/nix-personal/k8s/ingress.yaml
@@ -0,0 +1,33 @@
+apiVersion: networking.k8s.io/v1
+kind: Ingress
+metadata:
+ annotations:
+ traefik.ingress.kubernetes.io/router.tls: "true"
+ traefik.ingress.kubernetes.io/router.tls.certresolver: letsencrypt
+ traefik.ingress.kubernetes.io/router.tls.domains.0.main: 'girlth.ing'
+ traefik.ingress.kubernetes.io/router.tls.domains.0.sans: '*.girlth.ing'
+ name: girlthing-all
+ namespace: tcmal
+spec:
+ ingressClassName: traefik
+ rules:
+ - host: '*.girlth.ing'
+ http:
+ paths:
+ - backend:
+ service:
+ name: puppy
+ port:
+ name: http
+ path: /
+ pathType: ImplementationSpecific
+ - host: 'girlth.ing'
+ http:
+ paths:
+ - backend:
+ service:
+ name: puppy
+ port:
+ name: http
+ path: /
+ pathType: ImplementationSpecific
diff --git a/nix-personal/k8s/svc.yaml b/nix-personal/k8s/svc.yaml
new file mode 100644
index 0000000..e6dfdfb
--- /dev/null
+++ b/nix-personal/k8s/svc.yaml
@@ -0,0 +1,24 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: puppy
+ namespace: tcmal
+spec:
+ ports:
+ - name: http
+ port: 80
+ protocol: TCP
+ targetPort: 80
+---
+apiVersion: v1
+kind: Endpoints
+metadata:
+ name: puppy
+ namespace: tcmal
+subsets:
+- addresses:
+ - ip: 192.168.1.248
+ ports:
+ - name: http
+ port: 80
+ protocol: TCP