mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-04 07:11:49 +00:00
26 lines
488 B
YAML
26 lines
488 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: web-deploy-root
|
|
labels:
|
|
app: webapp
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: webapp
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: webapp
|
|
spec:
|
|
containers:
|
|
- name: alpinexroot
|
|
image: alpine
|
|
command: ['sleep', '1d']
|
|
ports:
|
|
- containerPort: 80
|
|
- name: alpineyroot
|
|
image: alpine
|
|
command: ['sleep', '1d']
|
|
ports:
|
|
- containerPort: 7777
|