deploy: move cephfs/csi-config-map to API

Signed-off-by: riya-singhal31 <rsinghal@redhat.com>
This commit is contained in:
riya-singhal31
2023-05-16 12:00:26 +05:30
committed by mergify[bot]
parent 5f996ff040
commit 802df8f69b
8 changed files with 220 additions and 3 deletions

View File

@ -22,6 +22,7 @@ import (
"path"
"reflect"
"github.com/ceph/ceph-csi/api/deploy/kubernetes/cephfs"
"github.com/ceph/ceph-csi/api/deploy/kubernetes/nfs"
"github.com/ceph/ceph-csi/api/deploy/kubernetes/rbd"
"github.com/ceph/ceph-csi/api/deploy/ocp"
@ -48,6 +49,11 @@ var yamlArtifacts = []deploymentArtifact{
reflect.ValueOf(ocp.NewSecurityContextConstraintsYAML),
reflect.ValueOf(ocp.SecurityContextConstraintsDefaults),
},
{
"../deploy/cephfs/kubernetes/csi-config-map.yaml",
reflect.ValueOf(cephfs.NewCSIConfigMapYAML),
reflect.ValueOf(cephfs.CSIConfigMapDefaults),
},
{
"../deploy/nfs/kubernetes/csidriver.yaml",
reflect.ValueOf(nfs.NewCSIDriverYAML),