Update 6 files

- /krakend/Chart.yaml
- /krakend/templates/service.yaml
- /krakend/templates/ingress.yaml
- /krakend/templates/secrets.yaml
- /krakend/templates/deployments.yaml
- /argocd/templates/krakend.yaml
This commit is contained in:
2023-08-19 12:44:23 +00:00
parent 63ab8f4d23
commit a8afe0b877
6 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: krakend
name: krakend
labels:
app: krakend
spec:
selector:
matchLabels:
app: krakend
replicas: 3
template:
metadata:
labels:
app: krakend
spec:
volumes:
- name: krakend-secret
secret:
secretName: config.json
containers:
- name: krakend
image: registry.durp.info/devopsfaith/krakend:2.4.3-watch
imagePullPolicy: Always
livenessProbe:
httpGet:
path: /__health
port: 8080
readinessProbe:
httpGet:
path: /__health
port: 8080
ports:
- name: http
containerPort: 8080
volumeMounts:
- name: krakend-secret
mountPath: /etc/krakend/