8 lines
342 B
Plaintext
8 lines
342 B
Plaintext
const NS=config.namespace;
|
|
const SRC=src;
|
|
const DEST=dest;
|
|
fn pre_pack() {
|
|
shell("helm repo add prometheus-community https://prometheus-community.github.io/helm-charts");
|
|
shell(`helm template prometheus-community prometheus-community/kube-prometheus-stack --namespace=vynil-monitor --values values.yml >${global::SRC}/chart.yaml`);
|
|
}
|