mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-09 12:07:47 +00:00
Merge pull request #2653 from justinsb/default_cluster_monitoring
Default ENABLE_CLUSTER_MONITORING to false
This commit is contained in:
commit
30656d7522
@ -106,14 +106,14 @@ function ensure-temp-dir {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function setup-monitoring {
|
function setup-monitoring {
|
||||||
if [[ "${ENABLE_CLUSTER_MONITORING}" == "true" ]]; then
|
if [[ "${ENABLE_CLUSTER_MONITORING:-false}" == "true" ]]; then
|
||||||
# TODO: Implement this.
|
# TODO: Implement this.
|
||||||
echo "Monitoring not currently supported on AWS"
|
echo "Monitoring not currently supported on AWS"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function teardown-monitoring {
|
function teardown-monitoring {
|
||||||
if [[ "${ENABLE_CLUSTER_MONITORING}" == "true" ]]; then
|
if [[ "${ENABLE_CLUSTER_MONITORING:-false}" == "true" ]]; then
|
||||||
# TODO: Implement this.
|
# TODO: Implement this.
|
||||||
echo "Monitoring not currently supported on AWS"
|
echo "Monitoring not currently supported on AWS"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user