31 lines
917 B
Plaintext
31 lines
917 B
Plaintext
const VERSION="5.0.14";
|
|
const SRC=src;
|
|
const DEST=dest;
|
|
const DOIT=config.apply;
|
|
const PURGE=config.purge;
|
|
const crdFiles=[
|
|
"apiextensions.k8s.io_v1_CustomResourceDefinition_miniojobs.job.min.io.yaml",
|
|
"apiextensions.k8s.io_v1_CustomResourceDefinition_policybindings.sts.min.io.yaml",
|
|
"apiextensions.k8s.io_v1_CustomResourceDefinition_tenants.minio.min.io.yaml",
|
|
];
|
|
fn pre_install() {
|
|
if ! global::DOIT {
|
|
return;
|
|
}
|
|
for file in global::crdFiles {
|
|
shell(`kubectl replace -f ${global::SRC}/${file} || kubectl create -f ${global::SRC}/${file}`);
|
|
}
|
|
}
|
|
fn post_destroy() {
|
|
if ! global::PURGE {
|
|
return;
|
|
}
|
|
for file in global::crdFiles {
|
|
shell(`kubectl delete -f ${global::SRC}/${file}`);
|
|
}
|
|
}
|
|
|
|
fn pre_pack() {
|
|
shell(`kubectl kustomize https://github.com/minio/operator//resources/base/crds/?ref=v${global::VERSION} > ${global::SRC}/otel.yaml`);
|
|
}
|