AB#2275 Add azuredisk CSI driver (#548)

* Add azuredisk CSI driver

* Update Changelog

* Update chart using go generate

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
Daniel Weiße 2022-11-18 15:47:01 +01:00 committed by GitHub
parent 54ef6d21f4
commit 9aa9c1bb49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
34 changed files with 2474 additions and 4 deletions

View file

@ -201,6 +201,13 @@ func (i *ChartLoader) loadConstellationServices(config *config.Config, masterSec
"deployCSIDriver": config.DeployCSIDriver(),
}
vals["azuredisk-csi-driver"] = map[string]any{
"node": map[string]any{
"kmsPort": constants.KMSPort,
"kmsNamespace": "", // empty namespace means we use the release namespace
},
}
vals["tags"] = map[string]any{
"Azure": true,
}