123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- ##---
- # Source: olm/templates/03-clusterserviceversion.crd.yaml
- apiVersion: apiextensions.k8s.io/v1beta1
- kind: CustomResourceDefinition
- metadata:
- name: clusterserviceversion-v1s.app.coreos.com
- annotations:
- displayName: Operator Version
- description: Represents an Operator that should be running on the cluster, including requirements and install strategy.
- labels:
- tectonic-operators.coreos.com/managed-by: tectonic-x-operator
- spec:
- names:
- plural: clusterserviceversion-v1s
- singular: clusterserviceversion-v1
- kind: ClusterServiceVersion-v1
- listKind: ClusterServiceVersionList-v1
- group: app.coreos.com
- version: v1alpha1
- scope: Namespaced
- validation:
- openAPIV3Schema:
- type: object
- description: Represents a single version of the operator software
- required:
- - spec
- properties:
- spec:
- type: object
- description: Spec for a ClusterServiceVersion
- required:
- - displayName
- - install
- properties:
- displayName:
- type: string
- description: Human readable name of the application that will be displayed in the ALM UI
- description:
- type: string
- description: Human readable description of what the application does
- keywords:
- type: array
- description: List of keywords which will be used to discover and categorize app types
- items:
- type: string
- maintainers:
- type: array
- description: Those responsible for the creation of this specific app type
- items:
- type: object
- description: Information for a single maintainer
- required:
- - name
- - email
- properties:
- name:
- type: string
- description: Maintainer's name
- email:
- type: string
- description: Maintainer's email address
- format: email
- optionalProperties:
- type: string
- description: "Any additional key-value metadata you wish to expose about the maintainer, e.g. github: <username>"
- links:
- type: array
- description: Interesting links to find more information about the project, such as marketing page, documentation, or github page
- items:
- type: object
- description: A single link to describe one aspect of the project
- required:
- - name
- - url
- properties:
- name:
- type: string
- description: Name of the link type, e.g. homepage or github url
- url:
- type: string
- description: URL to which the link should point
- format: uri
- icon:
- type: array
- description: Icon which should be rendered with the application information
- required:
- - base64data
- - mediatype
- properties:
- base64data:
- type: string
- description: Base64 binary representation of the icon image
- pattern: ^(?:[A-Za-z0-9+/]{4}){0,16250}(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$
- mediatype:
- type: string
- description: Mediatype for the binary data specified in the base64data property
- enum:
- - image/gif
- - image/jpeg
- - image/png
- - image/svg+xml
- version:
- type: string
- description: Version string, recommended that users use semantic versioning
- pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(-(0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(\.(0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*)?(\+[0-9a-zA-Z-]+(\.[0-9a-zA-Z-]+)*)?$
- replaces:
- type: string
- description: Name of the ClusterServiceVersion custom resource that this version replaces
- maturity:
- type: string
- description: What level of maturity the software has achieved at this version
- enum:
- - planning
- - pre-alpha
- - alpha
- - beta
- - stable
- - mature
- - inactive
- - deprecated
- labels:
- type: object
- description: Labels that will be applied to associated resources created by the operator.
- selector:
- type: object
- description: Label selector to find resources associated with or managed by the operator
- properties:
- matchLabels:
- type: object
- description: Label key:value pairs to match directly
- matchExpressions:
- type: array
- descriptions: A set of expressions to match against the resource.
- items:
- allOf:
- - type: object
- required:
- - key
- - operator
- - values
- properties:
- key:
- type: string
- description: the key to match
- operator:
- type: string
- description: the operator for the expression
- enum:
- - In
- - NotIn
- - Exists
- - DoesNotExist
- values:
- type: array
- description: set of values for the expression
- customresourcedefinitions:
- type: object
- properties:
- owned:
- type: array
- description: What resources this operator is responsible for managing. No two running operators should manage the same resource.
- items:
- type: object
- required:
- - name
- - version
- - kind
- - displayName
- - description
- properties:
- name:
- type: string
- description: Fully qualified name of the CustomResourceDefinition (e.g. my-resource-v1.app.coreos.com)
- version:
- type: string
- description: The version field of the CustomResourceDefinition
- kind:
- type: string
- description: The kind field of the CustomResourceDefinition
- displayName:
- type: string
- description: A human-readable name for the CRD.
- description:
- type: string
- description: A description of the CRD
- resources:
- type: array
- items:
- type: object
- description: A list of resources that should be displayed for the CRD
- required:
- - kind
- - version
- properties:
- name:
- type: string
- description: If a CRD, the fully qualified name of the CustomResourceDefinition (e.g. my-resource-v1.app.coreos.com)
- version:
- type: string
- description: The version of the resource kind
- kind:
- type: string
- description: The kind field of the resource kind
- statusDescriptors:
- type: array
- items:
- type: object
- description: A spec for a field in the status block of the CRD
- required:
- - path
- - displayName
- - description
- properties:
- path:
- type: string
- description: A jsonpath indexing into the status object on the CR where the the status value can be found.
- displayName:
- type: string
- description: A human-readable name for the status entry.
- description:
- type: string
- description: A description of the status entry.
- x-descriptors:
- type: array
- description: A list of descriptors for the status entry that indicate the meaning of the field.
- items:
- type: string
- value:
- type: object
- description: If present, the value of this status is the same for all instances of the CRD and can be found here instead of on the CR.
- specDescriptors:
- type: array
- items:
- type: object
- description: A spec for a field in the spec block of the CRD
- required:
- - path
- - displayName
- - description
- properties:
- path:
- type: string
- description: A jsonpath indexing into the spec object on the CR where the the spec value can be found.
- displayName:
- type: string
- description: A human-readable name for the spec entry.
- description:
- type: string
- description: A description of the spec entry.
- x-descriptors:
- type: array
- description: A list of descriptors for the spec entry that indicate the meaning of the field.
- items:
- type: string
- value:
- type: object
- description: If present, the value of this spec is the same for all instances of the CRD and can be found here instead of on the CR.
- required:
- type: array
- description: What resources this operator is responsible for managing. No two running operators should manage the same resource.
- items:
- type: object
- required:
- - name
- - version
- - kind
- - displayName
- - description
- properties:
- name:
- type: string
- description: Fully qualified name of the CustomResourceDefinition (e.g. my-resource-v1.app.coreos.com)
- version:
- type: string
- description: The version field of the CustomResourceDefinition
- kind:
- type: string
- description: The kind field of the CustomResourceDefinition
- displayName:
- type: string
- description: A human-readable name for the CRD.
- description:
- type: string
- description: A description of the CRD
- statusDescriptors:
- type: array
- items:
- type: object
- description: A spec for a field in the status block of the CRD
- required:
- - path
- - displayName
- - description
- properties:
- path:
- type: string
- description: A jsonpath indexing into the status object on the CR where the the status value can be found.
- displayName:
- type: string
- description: A human-readable name for the status entry.
- description:
- type: string
- description: A description of the status entry.
- x-descriptors:
- type: array
- description: A list of descriptors for the status entry that indicate the meaning of the field.
- items:
- type: string
- value:
- type: object
- description: If present, the value of this status is the same for all instances of the CRD and can be found here instead of on the CR.
- install:
- type: object
- description: Information required to install this specific version of the operator software
- oneOf:
- - type: object
- required:
- - strategy
- - spec
- properties:
- strategy:
- type: string
- enum: ['image']
- spec:
- type: object
- required:
- - image
- properties:
- image:
- type: string
- - type: object
- required:
- - strategy
- - spec
- properties:
- strategy:
- type: string
- enum: ['deployment']
- spec:
- type: object
- required:
- - deployments
- properties:
- deployments:
- type: array
- description: List of deployments to create
- items:
- type: object
- description: A name and deployment to create in the cluster
- required:
- - name
- - spec
- properties:
- name:
- type: string
- description: the consistent name of the deployment
- spec:
- type: object
- description: The deployment spec to create in the cluster
- permissions:
- type: array
- description: Permissions needed by the deployement to run correctly
- items:
- type: object
- required:
- - serviceAccountName
- - rules
- properties:
- serviceAccountName:
- type: string
- description: The service account name to create for the deployment
- rules:
- type: array
- items:
- type: object
- description: a rule required by the service account
- properties:
- apiGroups:
- type: array
- description: apiGroups the rule applies to
- items:
- type: string
- resources:
- type: array
- items:
- type: string
- resourceNames:
- type: array
- items:
- type: string
- verbs:
- type: array
- items:
- type: string
- enum:
- - "*"
- - get
- - list
- - watch
- - create
- - update
- - patch
- - delete
- - deletecollection
|