Add SYS_ADMIN cap in cinder-volume container in default

Retyping volume with on-deman migration policy requires SYS_ADMIN
cap in c-vol

Change-Id: Ie002de788926879c7fd02b6213762a40da2b30ac
This commit is contained in:
josebb 2022-05-20 16:41:56 +03:00
parent 350d55baad
commit 227eac2a77
3 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,7 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Cinder
name: cinder
version: 0.2.28
version: 0.2.29
home: https://docs.openstack.org/cinder/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png
sources:

View File

@ -140,6 +140,9 @@ pod:
runAsUser: 0
readOnlyRootFilesystem: true
cinder_volume:
capabilities:
add:
- SYS_ADMIN
readOnlyRootFilesystem: true
storage_init:
pod:

View File

@ -45,4 +45,5 @@ cinder:
- 0.2.26 Distinguish between port number of internal endpoint and binding port number
- 0.2.27 Support TLS endpoints
- 0.2.28 Use HTTP probe instead of TCP probe
- 0.2.29 Add SYS_ADMIN capability in cinder-volume
...