(chore)namespaced_operator: update namespaced operator to 1.7.0 (#1876)

Signed-off-by: ksatchit <karthik.s@mayadata.io>
This commit is contained in:
Karthik Satchitanand 2020-08-15 23:22:07 +05:30 committed by GitHub
parent 80a5e2dfb0
commit b399190299
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 97 additions and 9 deletions

View File

@ -48,8 +48,8 @@ spec:
type: string type: string
pattern: ^(deployment|statefulset|daemonset|deploymentconfig)$ pattern: ^(deployment|statefulset|daemonset|deploymentconfig)$
applabel: applabel:
type: string
pattern: ([a-z0-9A-Z_\.-/]+)=([a-z0-9A-Z_\.-/_]+) pattern: ([a-z0-9A-Z_\.-/]+)=([a-z0-9A-Z_\.-/_]+)
type: string
appns: appns:
type: string type: string
auxiliaryAppInfo: auxiliaryAppInfo:
@ -69,7 +69,7 @@ spec:
type: string type: string
type: type:
type: string type: string
pattern: ^(go|ansible)$ pattern: ^(go)$
runnerannotation: runnerannotation:
type: object type: object
additionalProperties: additionalProperties:
@ -93,6 +93,94 @@ spec:
spec: spec:
type: object type: object
properties: properties:
k8sProbe:
type: array
items:
type: object
properties:
name:
type: string
inputs:
type: object
properties:
command:
type: object
properties:
group:
type: string
version:
type: string
resource:
type: string
namespace:
type: string
fieldSelector:
type: string
expectedResult:
type: string
runProperties:
type: object
properties:
probeTimeout:
type: integer
interval:
type: integer
retry:
type: integer
mode:
type: string
cmdProbe:
type: array
items:
type: object
properties:
name:
type: string
inputs:
type: object
properties:
command:
type: string
expectedResult:
type: string
source:
type: string
runProperties:
type: object
properties:
probeTimeout:
type: integer
interval:
type: integer
retry:
type: integer
mode:
type: string
httpProbe:
type: array
items:
type: object
properties:
name:
type: string
inputs:
type: object
properties:
url:
type: string
expectedResponseCode:
type: string
runProperties:
type: object
properties:
probeTimeout:
type: integer
interval:
type: integer
retry:
type: integer
mode:
type: string
components: components:
type: object type: object
properties: properties:
@ -100,9 +188,9 @@ spec:
type: object type: object
properties: properties:
delay: delay:
type: int type: integer
timeout: timeout:
type: int type: integer
nodeSelector: nodeSelector:
type: object type: object
minLength: 1 minLength: 1
@ -121,7 +209,6 @@ spec:
type: array type: array
items: items:
type: object type: object
minProperties: 2
properties: properties:
name: name:
type: string type: string
@ -131,7 +218,6 @@ spec:
type: array type: array
items: items:
type: object type: object
minProperties: 2
properties: properties:
name: name:
type: string type: string

View File

@ -52,15 +52,17 @@ spec:
serviceAccountName: litmus serviceAccountName: litmus
containers: containers:
- name: chaos-operator - name: chaos-operator
image: litmuschaos/chaos-operator:1.6.2 image: litmuschaos/chaos-operator:1.7.0
command: command:
- chaos-operator - chaos-operator
imagePullPolicy: Always imagePullPolicy: Always
env: env:
- name: CHAOS_RUNNER_IMAGE - name: CHAOS_RUNNER_IMAGE
value: "litmuschaos/chaos-runner:1.6.2" value: "litmuschaos/chaos-runner:1.7.0"
- name: WATCH_NAMESPACE - name: WATCH_NAMESPACE
value: "default" valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: POD_NAME - name: POD_NAME
valueFrom: valueFrom:
fieldRef: fieldRef: