first import
Web/cv/pipeline/head This commit looks good
web/cv/pipeline/head This commit looks good

This commit is contained in:
Julien Cabillot
2021-12-29 15:17:36 -05:00
parent b34c788581
commit b819ec86c9
10 changed files with 205 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: "cv"
labels:
app: "front"
spec:
template:
metadata:
name: "front-apache"
labels:
owner: "jcabillot"
app: "front"
spec:
automountServiceAccountToken: false
containers:
- name: "front-apache"
image: "jcabillot/cv"
ports:
- name: "http"
containerPort: 8080
protocol: "TCP"
livenessProbe:
httpGet:
path: "/"
port: "http"
readinessProbe:
httpGet:
path: "/"
port: "http"
replicas: 1
selector:
matchLabels:
app: "front"