1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 17:37:12 +00:00
kyverno/test/cli/test-mutate/foreach/addIfNotPresent/deploy-patched.yaml
Batuhan Apaydın 41b24fb769
move from k8s.gcr.io to registry.k8s.io (#6263)
Signed-off-by: Batuhan Apaydın <batuhan.apaydin@trendyol.com>
2023-02-09 00:09:15 +08:00

35 lines
No EOL
744 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: svc-sizelimit-test
namespace: default
spec:
selector:
matchLabels:
test: svc-sizelimit-test
replicas: 1
template:
metadata:
labels:
test: svc-sizelimit-test
spec:
securityContext:
runAsUser: 65000
runAsGroup: 65000
containers:
- name: pause
image: registry.k8s.io/pause:3.3
resources:
limits:
cpu: 10m
memory: 32Mi
requests:
cpu: 10m
memory: 32Mi
volumeMounts:
- name: vol02
mountPath: /opt02
volumes:
- name: vol02
emptyDir:
sizeLimit: 20Mi