diff --git a/telemetry-aware-scheduling/deploy/tas-policy-crd.yaml b/telemetry-aware-scheduling/deploy/tas-policy-crd.yaml index 09666576..bd6b4a87 100644 --- a/telemetry-aware-scheduling/deploy/tas-policy-crd.yaml +++ b/telemetry-aware-scheduling/deploy/tas-policy-crd.yaml @@ -1,4 +1,4 @@ -apiVersion: apiextensions.k8s.io/v1beta1 +apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: name: taspolicies.telemetry.intel.com @@ -10,59 +10,59 @@ spec: plural: taspolicies singular: taspolicy scope: Namespaced - subresources: - status: {} - validation: - openAPIV3Schema: - properties: - apiVersion: - description: 'APIVersion defines the versioned schema of this representation - of an object. Servers should convert recognized schemas to the latest - type: string' - kind: - description: 'Kind is a string value representing the REST resource this - object represents. Servers may infer this from the endpoint the client' - type: string - metadata: - type: object - spec: - properties: - strategies: - additionalProperties: - properties: - policyName: - type: string - rules: - items: - properties: - metricname: - type: string - operator: - type: string - target: - format: int64 - type: integer - required: - - metricname - - operator - type: object - type: array - required: - - rules - type: object - type: object - required: - - strategies - type: object - status: - properties: - compliance: - type: string - message: - type: string - type: object - version: v1alpha1 versions: - name: v1alpha1 served: true - storage: true \ No newline at end of file + storage: true + schema: + openAPIV3Schema: + type: object + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client' + type: string + metadata: + type: object + spec: + properties: + strategies: + additionalProperties: + properties: + policyName: + type: string + rules: + items: + properties: + metricname: + type: string + operator: + type: string + target: + format: int64 + type: integer + required: + - metricname + - operator + type: object + type: array + required: + - rules + type: object + type: object + required: + - strategies + type: object + status: + properties: + compliance: + type: string + message: + type: string + type: object + subresources: + status: {}