From ee6630333ea3ee34139ee07e524807cbda37b8ce Mon Sep 17 00:00:00 2001 From: Maxim Goncharenko Date: Mon, 13 May 2019 16:08:02 +0300 Subject: [PATCH] Updated install.yaml due to the policy-v2 specifications --- definitions/install.yaml | 122 +++++++++++++++++++-------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/definitions/install.yaml b/definitions/install.yaml index 44c1214c00..5884555bbc 100644 --- a/definitions/install.yaml +++ b/definitions/install.yaml @@ -1,9 +1,9 @@ apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: - name: policies.policy.nirmata.io + name: policies.kubepolicy.nirmata.io spec: - group: policy.nirmata.io + group: kubepolicy.nirmata.io versions: - name: v1alpha1 served: true @@ -20,26 +20,23 @@ spec: properties: spec: required: - - failurePolicy - rules properties: - failurePolicy: - type: string - enum: - - continueOnError - - stopOnError rules: type: array items: type: object required: + - name - resource - properties: + parameters: + name: + type: string resource: type: object required: - kind - properties: + parameters: kind: type: string enum: @@ -85,66 +82,69 @@ spec: type: array items: type: string - patch: + mutate: + type: object + properties: + overlay: + AnyValue: {} + patches: + type: array + items: + type: object + required: + - path + - op + properties: + path: + type: string + op: + type: string + enum: + - add + - replace + - remove + value: + AnyValue: {} + validate: + type: object + required: + - pattern + properties: + message: + type: string + pattern: + AnyValue: {} + generate: type: array items: type: object required: - - path - - op + - kind + - name + - copyFrom properties: - path: + kind: type: string - op: + name: type: string - enum: - - add - - replace - - remove - value: - AnyValue: {} - configMapGenerator: - type: object - required: - - name - properties: - name: - type: string - copyFrom: - type: object - required: - - namespace - - name - properties: - namespace: + copyFrom: + type: object + required: + - namespace + - name + properties: + namespace: + type: string + name: + type: string + data: + type: object + additionalProperties: type: string - name: + labels: + type: object + additionalProperties: type: string - data: - type: object - additionalProperties: - type: string - secretGenerator: - type: object - required: - - name - properties: - name: - type: string - copyFrom: - type: object - required: - - namespace - - name - properties: - namespace: - type: string - name: - type: string - data: - type: object - additionalProperties: - type: string --- apiVersion: v1 kind: Service