9 lines
331 B
Plaintext
9 lines
331 B
Plaintext
const DEST=dest;
|
|
fn post_template() {
|
|
let scs = list_storage_class()["items"];
|
|
save_to_tf(`${global::DEST}/conditions.tf`, "conditions", #{
|
|
have_servicemonitors: have_crd("servicemonitors.monitoring.coreos.com"),
|
|
only_localpath: scs.some(|sc| sc["metadata"]["name"]=="local-path") && scs.len == 1
|
|
});
|
|
}
|