ip/kustomize/depl.yml

36 lines
708 B
YAML
Raw Permalink Normal View History

2021-03-18 18:03:16 -04:00
apiVersion: apps/v1
kind: Deployment
metadata:
2021-08-06 21:44:19 -04:00
name: "ip"
2021-03-18 18:03:16 -04:00
labels:
app: "front"
spec:
template:
metadata:
name: "front-apache"
labels:
owner: "jcabillot"
app: "front"
spec:
2021-06-24 15:51:22 -04:00
automountServiceAccountToken: false
2021-03-18 18:03:16 -04:00
containers:
- name: "front-apache"
image: "jcabillot/ip"
2021-08-06 21:44:19 -04:00
ports:
- name: "http"
containerPort: 8080
protocol: "TCP"
livenessProbe:
httpGet:
path: "/"
port: "http"
readinessProbe:
httpGet:
path: "/"
port: "http"
2021-03-18 18:03:16 -04:00
replicas: 1
selector:
matchLabels:
app: "front"