init
This commit is contained in:
19
examples/hello-world/hello-world-deployment.yaml
Normal file
19
examples/hello-world/hello-world-deployment.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: hello-world
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: hello-world
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: hello-world
|
||||
spec:
|
||||
containers:
|
||||
- name: hello-world
|
||||
image: paulbouwer/hello-kubernetes:1.10
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
Reference in New Issue
Block a user