Files
wedding-page/cicd/main/deployment.yaml
Sciocatti 9963dbfcc6
All checks were successful
Home Cluster Builds/wedding-page/pipeline/head This commit looks good
Forced builds to build and deploy to arm64 nodes. (#2)
Reviewed-on: http://192.168.195.195:30001/Home-Cluster/wedding-page/pulls/2
2023-01-11 16:40:50 +00:00

53 lines
1.0 KiB
YAML

apiVersion: v1
kind: Service
metadata:
name: wedding-fe-main-svc
namespace: apps
spec:
type: NodePort
selector:
app: wedding-fe-main
ports:
- name: http
nodePort: 31011
port: 80
targetPort: 80
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: wedding-fe-main
namespace: apps
spec:
replicas: 1
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
selector:
matchLabels:
app: wedding-fe-main
template:
metadata:
labels:
app: wedding-fe-main
delpoymentDate: "{{replaceMe}}"
spec:
nodeSelector:
kubernetes.io/arch: arm64
containers:
- name: wedding-fe-main
image: 192.168.195.195:30000/wedding-fe:main
imagePullPolicy: Always
ports:
- name: http
containerPort: 80
readinessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 5
periodSeconds: 5
successThreshold: 1