generated from Templates/html-nginx-deployment
All checks were successful
Home Cluster Builds/wedding-page/pipeline/head This commit looks good
Reviewed-on: http://192.168.195.195:30001/Home-Cluster/wedding-page/pulls/2
53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: wedding-fe-stage-svc
|
|
namespace: apps
|
|
spec:
|
|
type: NodePort
|
|
selector:
|
|
app: wedding-fe-stage
|
|
ports:
|
|
- name: http
|
|
nodePort: 31012
|
|
port: 80
|
|
targetPort: 80
|
|
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: wedding-fe-stage
|
|
namespace: apps
|
|
spec:
|
|
replicas: 1
|
|
strategy:
|
|
rollingUpdate:
|
|
maxSurge: 1
|
|
maxUnavailable: 1
|
|
type: RollingUpdate
|
|
selector:
|
|
matchLabels:
|
|
app: wedding-fe-stage
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: wedding-fe-stage
|
|
delpoymentDate: "{{replaceMe}}"
|
|
spec:
|
|
nodeSelector:
|
|
kubernetes.io/arch: arm64
|
|
containers:
|
|
- name: wedding-fe-stage
|
|
image: 192.168.195.195:30000/wedding-fe:stage
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- name: http
|
|
containerPort: 80
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 80
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
successThreshold: 1 |