34 lines
596 B
YAML
34 lines
596 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: nginx-deployment
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: nginx
|
||
|
replicas: 2 # tells deployment to run 2 pods matching the template
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: nginx
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: k8s.gcr.io/echoserver:1.4
|
||
|
ports:
|
||
|
- containerPort: 80
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: nginx-service
|
||
|
spec:
|
||
|
type: NodePort
|
||
|
externalTrafficPolicy: Local
|
||
|
selector:
|
||
|
app: nginx
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 80
|
||
|
nodePort: 32077
|