init
This commit is contained in:
23
hello-world/deployment.yml
Normal file
23
hello-world/deployment.yml
Normal file
@ -0,0 +1,23 @@
|
||||
kind: Deployment
|
||||
apiVersion: apps/v1
|
||||
metadata:
|
||||
name: hello-world
|
||||
labels:
|
||||
app: hello-world
|
||||
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: hello-world
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: hello-world
|
||||
spec:
|
||||
containers:
|
||||
- name: hello-world
|
||||
image: registry.hub.docker.com/lmmendes/http-hello-world
|
||||
ports:
|
||||
- name: web
|
||||
containerPort: 80
|
Reference in New Issue
Block a user