Implemented automatic fetching secrets from Azure KeyVault
This commit is contained in:
20
deployment/ingress.yaml
Normal file
20
deployment/ingress.yaml
Normal 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
|
Reference in New Issue
Block a user