mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
a6466fb1ca
Signed-off-by: Niels de Vos <ndevos@ibm.com>
130 lines
3.3 KiB
Go
130 lines
3.3 KiB
Go
/*
|
|
Copyright 2021 The Ceph-CSI Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"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"
|
|
)
|
|
|
|
const header = `#
|
|
# /!\ DO NOT MODIFY THIS FILE
|
|
#
|
|
# This file has been automatically generated by Ceph-CSI yamlgen.
|
|
# The source for the contents can be found in the api/deploy directory, make
|
|
# your modifications there.
|
|
#
|
|
`
|
|
|
|
type deploymentArtifact struct {
|
|
filename string
|
|
yamlFunc reflect.Value
|
|
defaults reflect.Value
|
|
}
|
|
|
|
var yamlArtifacts = []deploymentArtifact{
|
|
{
|
|
"../deploy/scc.yaml",
|
|
reflect.ValueOf(ocp.NewSecurityContextConstraintsYAML),
|
|
reflect.ValueOf(ocp.SecurityContextConstraintsDefaults),
|
|
},
|
|
{
|
|
"../deploy/cephfs/kubernetes/csidriver.yaml",
|
|
reflect.ValueOf(cephfs.NewCSIDriverYAML),
|
|
reflect.ValueOf(cephfs.CSIDriverDefaults),
|
|
},
|
|
{
|
|
"../deploy/cephfs/kubernetes/csi-config-map.yaml",
|
|
reflect.ValueOf(cephfs.NewCSIConfigMapYAML),
|
|
reflect.ValueOf(cephfs.CSIConfigMapDefaults),
|
|
},
|
|
{
|
|
"../deploy/nfs/kubernetes/csidriver.yaml",
|
|
reflect.ValueOf(nfs.NewCSIDriverYAML),
|
|
reflect.ValueOf(nfs.CSIDriverDefaults),
|
|
},
|
|
{
|
|
"../deploy/nfs/kubernetes/csi-config-map.yaml",
|
|
reflect.ValueOf(nfs.NewCSIConfigMapYAML),
|
|
reflect.ValueOf(nfs.CSIConfigMapDefaults),
|
|
},
|
|
{
|
|
"../deploy/nfs/kubernetes/csi-provisioner-rbac.yaml",
|
|
reflect.ValueOf(nfs.NewCSIProvisionerRBACYAML),
|
|
reflect.ValueOf(nfs.CSIProvisionerRBACDefaults),
|
|
},
|
|
{
|
|
"../deploy/rbd/kubernetes/csidriver.yaml",
|
|
reflect.ValueOf(rbd.NewCSIDriverYAML),
|
|
reflect.ValueOf(rbd.CSIDriverDefaults),
|
|
},
|
|
{
|
|
"../deploy/rbd/kubernetes/csi-config-map.yaml",
|
|
reflect.ValueOf(rbd.NewCSIConfigMapYAML),
|
|
reflect.ValueOf(rbd.CSIConfigMapDefaults),
|
|
},
|
|
}
|
|
|
|
func main() {
|
|
for _, artifact := range yamlArtifacts {
|
|
writeArtifact(artifact)
|
|
}
|
|
}
|
|
|
|
func writeArtifact(artifact deploymentArtifact) {
|
|
fmt.Printf("creating %q...", artifact.filename)
|
|
|
|
dir := path.Dir(artifact.filename)
|
|
_, err := os.Stat(dir)
|
|
if os.IsNotExist(err) {
|
|
err = os.MkdirAll(dir, 0o775)
|
|
if err != nil {
|
|
panic(fmt.Sprintf("failed to create directory %q: %v", dir, err))
|
|
}
|
|
}
|
|
|
|
f, err := os.Create(artifact.filename)
|
|
if err != nil {
|
|
panic(fmt.Sprintf("failed to create file %q: %v", artifact.filename, err))
|
|
}
|
|
|
|
_, err = f.WriteString(header)
|
|
if err != nil {
|
|
panic(fmt.Sprintf("failed to write header to %q: %v", artifact.filename, err))
|
|
}
|
|
|
|
result := artifact.yamlFunc.Call([]reflect.Value{artifact.defaults})
|
|
data := result[0].String()
|
|
if data == "" {
|
|
panic(fmt.Sprintf("failed to generate YAML for %q: %v", artifact.filename, result[1].String()))
|
|
}
|
|
|
|
_, err = f.WriteString(data)
|
|
if err != nil {
|
|
panic(fmt.Sprintf("failed to write contents to %q: %v", artifact.filename, err))
|
|
}
|
|
|
|
fmt.Println("done!")
|
|
}
|