Files
myceliumcloud-examples/examples/hello-world/hello-world-deployment.yaml
mik-tf 0a95c51230 init
2025-11-04 10:39:10 -05:00

19 lines
350 B
YAML

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