mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-08-23 22:26:34 +00:00
* added more mutations and refactor test to test each mutation separately * added more mutation definitions * update spec for controller * added mutations for cpu and memory request and limits * update request memory mutation * added liveness and probes * rmeove hostport mutation * added multiple mutations for request and limits memory Co-authored-by: Robert Brennan <accounts@rbren.io>
14 lines
254 B
YAML
14 lines
254 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
labels:
|
|
test: liveness
|
|
name: liveness-exec
|
|
spec:
|
|
containers:
|
|
- name: liveness
|
|
image: k8s.gcr.io/busybox
|
|
args:
|
|
- /bin/sh
|
|
- -c
|
|
- touch /tmp/healthy; sleep 30; rm -rf /tmp/healthy; sleep 600 |