mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
31 lines
583 B
YAML
31 lines
583 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nginx-deployment
|
|
creationTimestamp:
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: nginx
|
|
template:
|
|
metadata:
|
|
creationTimestamp:
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:latest
|
|
ports:
|
|
- containerPort: 80
|
|
resources: {}
|
|
imagePullPolicy: IfNotPresent
|
|
- name: ghost
|
|
image: ghost:latest
|
|
resources: {}
|
|
imagePullPolicy: IfNotPresent
|
|
strategy: {}
|
|
status: {}
|