This commit is contained in:
2024-02-20 17:15:27 +08:00
committed by huty
parent 6706e1a633
commit 34158042ad
1529 changed files with 177765 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
apiVersion: v1
kind: Service
metadata:
name: vweb-v1
labels:
kiamol: ch16
spec:
ports:
- port: 8017
targetPort: http
selector:
app: vweb-v1
type: LoadBalancer
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: vweb-v1
labels:
kiamol: ch16
spec:
selector:
matchLabels:
app: vweb-v1
template:
metadata:
labels:
app: vweb-v1
spec:
automountServiceAccountToken: false
containers:
- name: web
image: kiamol/ch09-vweb:v1
ports:
- name: http
containerPort: 80

View File

@@ -0,0 +1,25 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: vweb-v2
labels:
kiamol: ch16
spec:
selector:
matchLabels:
app: vweb-v2
template:
metadata:
labels:
app: vweb-v2
spec:
automountServiceAccountToken: false
securityContext:
runAsNonRoot: false
containers:
- name: web
image: kiamol/ch09-vweb:v2
ports:
- name: http
containerPort: 80

View File

@@ -0,0 +1,35 @@
apiVersion: v1
kind: Service
metadata:
name: vweb-v1
labels:
kiamol: ch16
spec:
ports:
- port: 8017
targetPort: http
selector:
app: vweb-v1
type: LoadBalancer
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: vweb-v1
labels:
kiamol: ch16
spec:
selector:
matchLabels:
app: vweb-v1
template:
metadata:
labels:
app: vweb-v1
spec:
containers:
- name: web
image: kiamol/ch09-vweb:v1
ports:
- name: http
containerPort: 80

View File

@@ -0,0 +1,37 @@
apiVersion: v1
kind: Service
metadata:
name: vweb-v2
labels:
kiamol: ch16
spec:
ports:
- port: 8018
targetPort: http
selector:
app: vweb-v2
type: LoadBalancer
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: vweb-v2
labels:
kiamol: ch16
spec:
selector:
matchLabels:
app: vweb-v2
template:
metadata:
labels:
app: vweb-v2
spec:
automountServiceAccountToken: false
containers:
- name: web
image: kiamol/ch09-vweb:v2
ports:
- name: http
containerPort: 80