23 lines
350 B
YAML
23 lines
350 B
YAML
|
---
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: wordpress
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: wordpress
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: wordpress
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: wordpress
|
||
|
image: wordpress:5
|
||
|
ports:
|
||
|
- containerPort: 80
|
||
|
|
||
|
# vim: set ts=2 sw=2 et:
|