add deployment manifests

This commit is contained in:
Anibal Angulo
2025-11-26 13:24:04 -06:00
parent 9fbcc07426
commit 5e4a155fed
4 changed files with 89 additions and 0 deletions

19
.k8s/ingress.yaml Normal file
View File

@@ -0,0 +1,19 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: playground-ingress
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
ingressClassName: nginx
rules:
- host: playground.app.ia-innovacion.work
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: playground-service
port:
number: 80