mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
23 lines
402 B
YAML
23 lines
402 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: main-deployment
|
||
|
namespace: test-globalcontext
|
||
|
labels:
|
||
|
app: main-deployment
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: main-deployment
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: main-deployment
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx:1.14.2
|
||
|
ports:
|
||
|
- containerPort: 80
|