ip/kustomize/depl.yml
Julien Cabillot 13193d699e
All checks were successful
Web/ip/pipeline/head This commit looks good
web/ip/pipeline/head This commit looks good
test de ingressroute
2021-08-06 21:51:24 -04:00

36 lines
708 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: "ip"
labels:
app: "front"
spec:
template:
metadata:
name: "front-apache"
labels:
owner: "jcabillot"
app: "front"
spec:
automountServiceAccountToken: false
containers:
- name: "front-apache"
image: "jcabillot/ip"
ports:
- name: "http"
containerPort: 8080
protocol: "TCP"
livenessProbe:
httpGet:
path: "/"
port: "http"
readinessProbe:
httpGet:
path: "/"
port: "http"
replicas: 1
selector:
matchLabels:
app: "front"