mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-05-06 08:16:32 +00:00
18 lines
331 B
YAML
18 lines
331 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: helloworld-deployment
|
|
spec:
|
|
replicas: 3
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: helloworld
|
|
spec:
|
|
containers:
|
|
- name: k8s-demo
|
|
image: wardviaene/k8s-demo
|
|
ports:
|
|
- name: nodejs-port
|
|
containerPort: 3000
|