03-clusterserviceversion.crd.yaml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. ##---
  2. # Source: olm/templates/03-clusterserviceversion.crd.yaml
  3. apiVersion: apiextensions.k8s.io/v1beta1
  4. kind: CustomResourceDefinition
  5. metadata:
  6. name: clusterserviceversion-v1s.app.coreos.com
  7. annotations:
  8. displayName: Operator Version
  9. description: Represents an Operator that should be running on the cluster, including requirements and install strategy.
  10. labels:
  11. tectonic-operators.coreos.com/managed-by: tectonic-x-operator
  12. spec:
  13. names:
  14. plural: clusterserviceversion-v1s
  15. singular: clusterserviceversion-v1
  16. kind: ClusterServiceVersion-v1
  17. listKind: ClusterServiceVersionList-v1
  18. group: app.coreos.com
  19. version: v1alpha1
  20. scope: Namespaced
  21. validation:
  22. openAPIV3Schema:
  23. type: object
  24. description: Represents a single version of the operator software
  25. required:
  26. - spec
  27. properties:
  28. spec:
  29. type: object
  30. description: Spec for a ClusterServiceVersion
  31. required:
  32. - displayName
  33. - install
  34. properties:
  35. displayName:
  36. type: string
  37. description: Human readable name of the application that will be displayed in the ALM UI
  38. description:
  39. type: string
  40. description: Human readable description of what the application does
  41. keywords:
  42. type: array
  43. description: List of keywords which will be used to discover and categorize app types
  44. items:
  45. type: string
  46. maintainers:
  47. type: array
  48. description: Those responsible for the creation of this specific app type
  49. items:
  50. type: object
  51. description: Information for a single maintainer
  52. required:
  53. - name
  54. - email
  55. properties:
  56. name:
  57. type: string
  58. description: Maintainer's name
  59. email:
  60. type: string
  61. description: Maintainer's email address
  62. format: email
  63. optionalProperties:
  64. type: string
  65. description: "Any additional key-value metadata you wish to expose about the maintainer, e.g. github: <username>"
  66. links:
  67. type: array
  68. description: Interesting links to find more information about the project, such as marketing page, documentation, or github page
  69. items:
  70. type: object
  71. description: A single link to describe one aspect of the project
  72. required:
  73. - name
  74. - url
  75. properties:
  76. name:
  77. type: string
  78. description: Name of the link type, e.g. homepage or github url
  79. url:
  80. type: string
  81. description: URL to which the link should point
  82. format: uri
  83. icon:
  84. type: array
  85. description: Icon which should be rendered with the application information
  86. required:
  87. - base64data
  88. - mediatype
  89. properties:
  90. base64data:
  91. type: string
  92. description: Base64 binary representation of the icon image
  93. pattern: ^(?:[A-Za-z0-9+/]{4}){0,16250}(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$
  94. mediatype:
  95. type: string
  96. description: Mediatype for the binary data specified in the base64data property
  97. enum:
  98. - image/gif
  99. - image/jpeg
  100. - image/png
  101. - image/svg+xml
  102. version:
  103. type: string
  104. description: Version string, recommended that users use semantic versioning
  105. 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-]+)*)?$
  106. replaces:
  107. type: string
  108. description: Name of the ClusterServiceVersion custom resource that this version replaces
  109. maturity:
  110. type: string
  111. description: What level of maturity the software has achieved at this version
  112. enum:
  113. - planning
  114. - pre-alpha
  115. - alpha
  116. - beta
  117. - stable
  118. - mature
  119. - inactive
  120. - deprecated
  121. labels:
  122. type: object
  123. description: Labels that will be applied to associated resources created by the operator.
  124. selector:
  125. type: object
  126. description: Label selector to find resources associated with or managed by the operator
  127. properties:
  128. matchLabels:
  129. type: object
  130. description: Label key:value pairs to match directly
  131. matchExpressions:
  132. type: array
  133. descriptions: A set of expressions to match against the resource.
  134. items:
  135. allOf:
  136. - type: object
  137. required:
  138. - key
  139. - operator
  140. - values
  141. properties:
  142. key:
  143. type: string
  144. description: the key to match
  145. operator:
  146. type: string
  147. description: the operator for the expression
  148. enum:
  149. - In
  150. - NotIn
  151. - Exists
  152. - DoesNotExist
  153. values:
  154. type: array
  155. description: set of values for the expression
  156. customresourcedefinitions:
  157. type: object
  158. properties:
  159. owned:
  160. type: array
  161. description: What resources this operator is responsible for managing. No two running operators should manage the same resource.
  162. items:
  163. type: object
  164. required:
  165. - name
  166. - version
  167. - kind
  168. - displayName
  169. - description
  170. properties:
  171. name:
  172. type: string
  173. description: Fully qualified name of the CustomResourceDefinition (e.g. my-resource-v1.app.coreos.com)
  174. version:
  175. type: string
  176. description: The version field of the CustomResourceDefinition
  177. kind:
  178. type: string
  179. description: The kind field of the CustomResourceDefinition
  180. displayName:
  181. type: string
  182. description: A human-readable name for the CRD.
  183. description:
  184. type: string
  185. description: A description of the CRD
  186. resources:
  187. type: array
  188. items:
  189. type: object
  190. description: A list of resources that should be displayed for the CRD
  191. required:
  192. - kind
  193. - version
  194. properties:
  195. name:
  196. type: string
  197. description: If a CRD, the fully qualified name of the CustomResourceDefinition (e.g. my-resource-v1.app.coreos.com)
  198. version:
  199. type: string
  200. description: The version of the resource kind
  201. kind:
  202. type: string
  203. description: The kind field of the resource kind
  204. statusDescriptors:
  205. type: array
  206. items:
  207. type: object
  208. description: A spec for a field in the status block of the CRD
  209. required:
  210. - path
  211. - displayName
  212. - description
  213. properties:
  214. path:
  215. type: string
  216. description: A jsonpath indexing into the status object on the CR where the the status value can be found.
  217. displayName:
  218. type: string
  219. description: A human-readable name for the status entry.
  220. description:
  221. type: string
  222. description: A description of the status entry.
  223. x-descriptors:
  224. type: array
  225. description: A list of descriptors for the status entry that indicate the meaning of the field.
  226. items:
  227. type: string
  228. value:
  229. type: object
  230. 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.
  231. specDescriptors:
  232. type: array
  233. items:
  234. type: object
  235. description: A spec for a field in the spec block of the CRD
  236. required:
  237. - path
  238. - displayName
  239. - description
  240. properties:
  241. path:
  242. type: string
  243. description: A jsonpath indexing into the spec object on the CR where the the spec value can be found.
  244. displayName:
  245. type: string
  246. description: A human-readable name for the spec entry.
  247. description:
  248. type: string
  249. description: A description of the spec entry.
  250. x-descriptors:
  251. type: array
  252. description: A list of descriptors for the spec entry that indicate the meaning of the field.
  253. items:
  254. type: string
  255. value:
  256. type: object
  257. 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.
  258. required:
  259. type: array
  260. description: What resources this operator is responsible for managing. No two running operators should manage the same resource.
  261. items:
  262. type: object
  263. required:
  264. - name
  265. - version
  266. - kind
  267. - displayName
  268. - description
  269. properties:
  270. name:
  271. type: string
  272. description: Fully qualified name of the CustomResourceDefinition (e.g. my-resource-v1.app.coreos.com)
  273. version:
  274. type: string
  275. description: The version field of the CustomResourceDefinition
  276. kind:
  277. type: string
  278. description: The kind field of the CustomResourceDefinition
  279. displayName:
  280. type: string
  281. description: A human-readable name for the CRD.
  282. description:
  283. type: string
  284. description: A description of the CRD
  285. statusDescriptors:
  286. type: array
  287. items:
  288. type: object
  289. description: A spec for a field in the status block of the CRD
  290. required:
  291. - path
  292. - displayName
  293. - description
  294. properties:
  295. path:
  296. type: string
  297. description: A jsonpath indexing into the status object on the CR where the the status value can be found.
  298. displayName:
  299. type: string
  300. description: A human-readable name for the status entry.
  301. description:
  302. type: string
  303. description: A description of the status entry.
  304. x-descriptors:
  305. type: array
  306. description: A list of descriptors for the status entry that indicate the meaning of the field.
  307. items:
  308. type: string
  309. value:
  310. type: object
  311. 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.
  312. install:
  313. type: object
  314. description: Information required to install this specific version of the operator software
  315. oneOf:
  316. - type: object
  317. required:
  318. - strategy
  319. - spec
  320. properties:
  321. strategy:
  322. type: string
  323. enum: ['image']
  324. spec:
  325. type: object
  326. required:
  327. - image
  328. properties:
  329. image:
  330. type: string
  331. - type: object
  332. required:
  333. - strategy
  334. - spec
  335. properties:
  336. strategy:
  337. type: string
  338. enum: ['deployment']
  339. spec:
  340. type: object
  341. required:
  342. - deployments
  343. properties:
  344. deployments:
  345. type: array
  346. description: List of deployments to create
  347. items:
  348. type: object
  349. description: A name and deployment to create in the cluster
  350. required:
  351. - name
  352. - spec
  353. properties:
  354. name:
  355. type: string
  356. description: the consistent name of the deployment
  357. spec:
  358. type: object
  359. description: The deployment spec to create in the cluster
  360. permissions:
  361. type: array
  362. description: Permissions needed by the deployement to run correctly
  363. items:
  364. type: object
  365. required:
  366. - serviceAccountName
  367. - rules
  368. properties:
  369. serviceAccountName:
  370. type: string
  371. description: The service account name to create for the deployment
  372. rules:
  373. type: array
  374. items:
  375. type: object
  376. description: a rule required by the service account
  377. properties:
  378. apiGroups:
  379. type: array
  380. description: apiGroups the rule applies to
  381. items:
  382. type: string
  383. resources:
  384. type: array
  385. items:
  386. type: string
  387. resourceNames:
  388. type: array
  389. items:
  390. type: string
  391. verbs:
  392. type: array
  393. items:
  394. type: string
  395. enum:
  396. - "*"
  397. - get
  398. - list
  399. - watch
  400. - create
  401. - update
  402. - patch
  403. - delete
  404. - deletecollection