mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
[Feature] Migrate storage-operator CustomResourceDefinition apiVersion to apiextensions.k8s.io/v1 (#907)
This commit is contained in:
parent
ef14035beb
commit
c372b99f7b
2 changed files with 10 additions and 2 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
|
||||
- (Feature) Improve Kubernetes clientsets management
|
||||
- Migrate storage-operator CustomResourceDefinition apiVersion to apiextensions.k8s.io/v1
|
||||
|
||||
## [1.2.8](https://github.com/arangodb/kube-arangodb/tree/1.2.8) (2022-02-24)
|
||||
- Do not check License V2 on Community images
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{{ if .Values.operator.features.storage -}}
|
||||
|
||||
apiVersion: apiextensions.k8s.io/v1beta1
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: arangolocalstorages.storage.arangodb.com
|
||||
|
@ -20,6 +20,13 @@ spec:
|
|||
- arangostorage
|
||||
singular: arangolocalstorage
|
||||
scope: Cluster
|
||||
version: v1alpha
|
||||
versions:
|
||||
- name: v1alpha
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
|
||||
{{- end }}
|
Loading…
Reference in a new issue