mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-05-16 13:06:37 +00:00
21 lines
371 B
YAML
21 lines
371 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: helloworld-deployment
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app: helloworld
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: helloworld
|
|
spec:
|
|
containers:
|
|
- name: k8s-demo
|
|
image: wardviaene/k8s-demo
|
|
ports:
|
|
- name: nodejs-port
|
|
containerPort: 3000
|