mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-08-19 01:06:15 +00:00
repl controller and deployment
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
apiVersion: v1
|
||||
kind: ReplicationController
|
||||
metadata:
|
||||
name: helloworld-controller
|
||||
spec:
|
||||
replicas: 2
|
||||
selector:
|
||||
app: helloworld
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: helloworld
|
||||
spec:
|
||||
containers:
|
||||
- name: k8s-demo
|
||||
image: wardviaene/k8s-demo
|
||||
ports:
|
||||
- name: nodejs-port
|
||||
containerPort: 3000
|
||||
Reference in New Issue
Block a user