12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- ##---
- # Source: olm/templates/07-subscription.crd.yaml
- apiVersion: apiextensions.k8s.io/v1beta1
- kind: CustomResourceDefinition
- metadata:
- name: subscription-v1s.app.coreos.com
- annotations:
- displayName: Subscription
- description: Subcribes service catalog to a source and channel to recieve updates for packages.
- labels:
- tectonic-operators.coreos.com/managed-by: tectonic-x-operator
- spec:
- group: app.coreos.com
- version: v1alpha1
- scope: Namespaced
- names:
- plural: subscription-v1s
- singular: subscription-v1
- kind: Subscription-v1
- listKind: SubscriptionList-v1
- validation:
- openAPIV3Schema:
- type: object
- description: Represents a subscription to a source and channel
- required:
- - spec
- properties:
- spec:
- type: object
- description: Spec for a Subscription
- required:
- - source
- - name
- properties:
- source:
- type: string
- description: Name of a CatalogSource that defines where and how to find the channel
- name:
- type: string
- description: Name of the package that defines the application
- channel:
- type: string
- description: Name of the channel to track
-
- startingCSV:
- type: string
- description: Name of the AppType that this subscription tracks
|