[ceph-osd] update rbac api version

When using a helm3 to deploy, it fails as helm 3
no longer supports rbac.authorization.k8s.io/v1beta1,
but v1 can support helm2 and helm3 (liujinyuan@inspur.com).

Change-Id: I40a5863c80489db8ea40028ffb6d89c43f6771d6
This commit is contained in:
bw6938 2021-02-21 03:59:50 +00:00 committed by Brian Wickersham
parent 40ca7b8abc
commit 2594e71488
3 changed files with 3 additions and 2 deletions

View File

@ -15,6 +15,6 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Ceph OSD
name: ceph-osd
version: 0.1.18
version: 0.1.19
home: https://github.com/ceph/ceph
...

View File

@ -51,7 +51,7 @@ rules:
- get
- list
---
apiVersion: rbac.authorization.k8s.io/v1beta1
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: {{ $serviceAccountName }}

View File

@ -19,4 +19,5 @@ ceph-osd:
- 0.1.16 dmsetup remove logical devices using correct device names
- 0.1.17 Fix a bug with DB orphan volume removal
- 0.1.18 Uplift from Nautilus to Octopus release
- 0.1.19 Update rbac api version
...