26 lines
482 B
YAML
26 lines
482 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: kargo-demo
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: kargo-demo
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: kargo-demo
|
|
spec:
|
|
containers:
|
|
- image: nginx:1.27.4
|
|
name: nginx
|
|
volumeMounts:
|
|
- mountPath: /usr/share/nginx/html
|
|
name: content
|
|
readOnly: true
|
|
volumes:
|
|
- configMap:
|
|
name: kargo-demo-content
|
|
name: content
|