1234567891011121314151617181920212223242526272829303132333435 |
- ---
- apiVersion: apiextensions.k8s.io/v1beta1
- kind: CustomResourceDefinition
- metadata:
- name: serviceinstances.automationbroker.io
- spec:
- group: automationbroker.io
- version: v1
- scope: Namespaced
- names:
- plural: serviceinstances
- singular: serviceinstance
- kind: ServiceInstance
- validation:
- # openAPIV3Schema is the schema for validating custom objects.
- openAPIV3Schema:
- properties:
- spec:
- properties:
- specId:
- type: string
- context:
- type: object
- properties:
- plateform:
- type: string
- namespace:
- type: string
- parameters:
- type: string
- bindingIds:
- type: array
- items:
- type: string
|