Add deploment config
This commit is contained in:
19
ingress/web-deplyment.yaml
Normal file
19
ingress/web-deplyment.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: web
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
run: web
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
run: web
|
||||
spec:
|
||||
containers:
|
||||
- name: web
|
||||
image: gcr.io/google-samples/hello-app:1.0
|
||||
ports:
|
||||
- containerPort: 80
|
19
ingress/web2-deplyment.yaml
Normal file
19
ingress/web2-deplyment.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: web2
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
run: web2
|
||||
replicas: 3
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
run: web2
|
||||
spec:
|
||||
containers:
|
||||
- name: web2
|
||||
image: gcr.io/google-samples/hello-app:2.0
|
||||
ports:
|
||||
- containerPort: 80
|
Reference in New Issue
Block a user