2021-11-30 17:29:42 +01:00
|
|
|
package helm
|
|
|
|
|
|
|
|
type Storage struct {
|
|
|
|
*K8sBase `yaml:",inline"`
|
|
|
|
Spec *PVCSpec
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewPVC(name, storageName string) *Storage {
|
|
|
|
pvc := &Storage{}
|
|
|
|
pvc.K8sBase = NewBase()
|
|
|
|
pvc.K8sBase.Kind = "PersistentVolumeClaim"
|
|
|
|
pvc.K8sBase.Metadata.Labels[K+"/pvc-name"] = storageName
|
|
|
|
pvc.K8sBase.ApiVersion = "v1"
|
2021-12-05 09:05:48 +01:00
|
|
|
pvc.K8sBase.Metadata.Name = RELEASE_NAME + "-" + storageName
|
2021-12-01 15:17:34 +01:00
|
|
|
pvc.K8sBase.Metadata.Labels[K+"/component"] = name
|
2021-11-30 17:29:42 +01:00
|
|
|
pvc.Spec = &PVCSpec{
|
|
|
|
Resouces: map[string]interface{}{
|
|
|
|
"requests": map[string]string{
|
2021-12-01 16:50:32 +01:00
|
|
|
"storage": "{{ .Values." + name + ".persistence." + storageName + ".capacity }}",
|
2021-11-30 17:29:42 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
AccessModes: []string{"ReadWriteOnce"},
|
|
|
|
}
|
|
|
|
return pvc
|
|
|
|
}
|
|
|
|
|
|
|
|
type PVCSpec struct {
|
|
|
|
Resouces map[string]interface{} `yaml:"resources"`
|
|
|
|
AccessModes []string `yaml:"accessModes"`
|
|
|
|
}
|