mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
* fix mutate preprocessing for anchors Signed-off-by: Jim Bugwadia <jim@nirmata.com> * make fmt Signed-off-by: Jim Bugwadia <jim@nirmata.com> Co-authored-by: shuting <shutting06@gmail.com>
35 lines
No EOL
739 B
YAML
35 lines
No EOL
739 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: k8s.gcr.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 |