mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-11 11:47:12 +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>
25 lines
487 B
YAML
25 lines
487 B
YAML
successMessage: Multiple replicas are scheduled
|
|
failureMessage: Only one replica is scheduled
|
|
category: Reliability
|
|
target: Controller
|
|
controllers:
|
|
include:
|
|
- Deployment
|
|
schema:
|
|
'$schema': http://json-schema.org/draft-07/schema
|
|
type: object
|
|
required:
|
|
- spec
|
|
properties:
|
|
spec:
|
|
type: object
|
|
required:
|
|
- replicas
|
|
properties:
|
|
replicas:
|
|
type: integer
|
|
minimum: 2
|
|
mutations:
|
|
- op: add
|
|
path: /spec/replicas
|
|
value: 3 |