mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-25 09:06:49 +00:00
29 lines
593 B
YAML
29 lines
593 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: new-deployment
|
||
|
namespace: test-globalcontext-apicall-correct
|
||
|
labels:
|
||
|
app: new-deployment
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: new-deployment
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: new-deployment
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: pause
|
||
|
image: registry.k8s.io/pause:latest
|
||
|
resources:
|
||
|
requests:
|
||
|
cpu: 10m
|
||
|
memory: 10Mi
|
||
|
limits:
|
||
|
cpu: 10m
|
||
|
memory: 10Mi
|
||
|
terminationGracePeriodSeconds: 0
|