[ceph-provisioner] Add ceph mon v2 port for ceph csi provisioner

This is to update ceph mon port from v1 to v2 for csi based rbd plugin.
also update cephcsi image to 3.4.0.

Change-Id: Ib6153730216dbd5a8d2f3f7b7dd0e88c7fd4389d
This commit is contained in:
Chinasubbareddy Mallavarapu 2021-07-27 18:22:10 +00:00 committed by chinasubbareddy mallavarapu
parent a121f3d1c2
commit c70b3fce5a
4 changed files with 4 additions and 3 deletions

View File

@ -15,6 +15,6 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Ceph Provisioner
name: ceph-provisioners
version: 0.1.11
version: 0.1.12
home: https://github.com/ceph/ceph
...

View File

@ -20,7 +20,7 @@ limitations under the License.
{{- if and (.Values.deployment.ceph) (.Values.deployment.csi_rbd_provisioner) }}
{{- if empty .Values.conf.ceph.global.mon_host -}}
{{- $monHost := tuple "ceph_mon" "internal" "mon" . | include "helm-toolkit.endpoints.host_and_port_endpoint_uri_lookup" }}
{{- $monHost := tuple "ceph_mon" "internal" "mon_msgr2" . | include "helm-toolkit.endpoints.host_and_port_endpoint_uri_lookup" }}
{{- $_ := $monHost | set .Values.conf.ceph.global "mon_host" -}}
{{- end -}}

View File

@ -39,7 +39,7 @@ images:
csi_attacher: 'quay.io/k8scsi/csi-attacher:v2.1.1'
csi_resizer: 'quay.io/k8scsi/csi-resizer:v0.4.0'
csi_registrar: 'quay.io/k8scsi/csi-node-driver-registrar:v1.2.0'
cephcsi: 'quay.io/cephcsi/cephcsi:v3.1.0'
cephcsi: 'quay.io/cephcsi/cephcsi:v3.4.0'
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
image_repo_sync: 'docker.io/library/docker:17.07.0'
local_registry:

View File

@ -11,4 +11,5 @@ ceph-provisioners:
- 0.1.8 Enable Ceph CSI Provisioner to Stand Alone
- 0.1.10 Add check for empty ceph endpoint
- 0.1.11 Limit Ceph Provisioner Container Security Contexts
- 0.1.12 Add ceph mon v2 port for ceph csi provisioner
...