Implemented automatic fetching secrets from Azure KeyVault

This commit is contained in:
Marcin-Ramotowski
2025-05-29 21:37:20 +00:00
parent 9c1c1bdd70
commit 80dca16646
4 changed files with 73 additions and 0 deletions

20
deployment/ingress.yaml Normal file
View File

@ -0,0 +1,20 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: todolist-ingress
namespace: todolist
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
ingressClassName: nginx
rules:
- host: todolist.marcin00.pl
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: todolist-frontend
port:
number: 80