mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 15:05:27 +00:00
Merge pull request #9037 from rjnagal/monitoring
Fix cluster monitoring setup config.
This commit is contained in:
commit
a687d62b81
@ -45,8 +45,11 @@ LOGGING_DESTINATION=elasticsearch # options: elasticsearch, gcp
|
|||||||
ENABLE_CLUSTER_LOGGING=false
|
ENABLE_CLUSTER_LOGGING=false
|
||||||
ELASTICSEARCH_LOGGING_REPLICAS=1
|
ELASTICSEARCH_LOGGING_REPLICAS=1
|
||||||
|
|
||||||
# Optional: When set to true, heapster, Influxdb and grafana will be setup as part of the cluster bring up.
|
# Optional: Cluster monitoring to setup as part of the cluster bring up:
|
||||||
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-true}"
|
# none - No cluster monitoring setup
|
||||||
|
# influxdb - Heapster, InfluxDB, and Grafana
|
||||||
|
# google - Heapster, Google Cloud Monitoring, and Google Cloud Logging
|
||||||
|
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-influxdb}"
|
||||||
|
|
||||||
# Admission Controllers to invoke prior to persisting objects in cluster
|
# Admission Controllers to invoke prior to persisting objects in cluster
|
||||||
ADMISSION_CONTROL=NamespaceLifecycle,NamespaceExists,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota
|
ADMISSION_CONTROL=NamespaceLifecycle,NamespaceExists,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota
|
||||||
|
@ -30,5 +30,8 @@ LOGGING_DESTINATION=gcp # options: elasticsearch, gcp
|
|||||||
ENABLE_CLUSTER_LOGGING=false
|
ENABLE_CLUSTER_LOGGING=false
|
||||||
ELASTICSEARCH_LOGGING_REPLICAS=1
|
ELASTICSEARCH_LOGGING_REPLICAS=1
|
||||||
|
|
||||||
# Optional: When set to true, heapster, Influxdb and Grafana will be setup as part of the cluster bring up.
|
# Optional: Cluster monitoring to setup as part of the cluster bring up:
|
||||||
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-false}"
|
# none - No cluster monitoring setup
|
||||||
|
# influxdb - Heapster, InfluxDB, and Grafana
|
||||||
|
# google - Heapster, Google Cloud Monitoring, and Google Cloud Logging
|
||||||
|
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-none}"
|
||||||
|
@ -49,8 +49,11 @@ LOGGING_DESTINATION=elasticsearch
|
|||||||
ENABLE_CLUSTER_LOGGING=false
|
ENABLE_CLUSTER_LOGGING=false
|
||||||
ELASTICSEARCH_LOGGING_REPLICAS=1
|
ELASTICSEARCH_LOGGING_REPLICAS=1
|
||||||
|
|
||||||
# Optional: When set to true, heapster, Influxdb and Grafana will be setup as part of the cluster bring up.
|
# Optional: Cluster monitoring to setup as part of the cluster bring up:
|
||||||
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-true}"
|
# none - No cluster monitoring setup
|
||||||
|
# influxdb - Heapster, InfluxDB, and Grafana
|
||||||
|
# google - Heapster, Google Cloud Monitoring, and Google Cloud Logging
|
||||||
|
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-influxdb}"
|
||||||
|
|
||||||
# Optional: Install cluster DNS.
|
# Optional: Install cluster DNS.
|
||||||
ENABLE_CLUSTER_DNS=true
|
ENABLE_CLUSTER_DNS=true
|
||||||
|
@ -63,8 +63,11 @@ LOGGING_DESTINATION=elasticsearch
|
|||||||
ENABLE_CLUSTER_LOGGING=false
|
ENABLE_CLUSTER_LOGGING=false
|
||||||
ELASTICSEARCH_LOGGING_REPLICAS=1
|
ELASTICSEARCH_LOGGING_REPLICAS=1
|
||||||
|
|
||||||
# Optional: When set to true, heapster, Influxdb and Grafana will be setup as part of the cluster bring up.
|
# Optional: Cluster monitoring to setup as part of the cluster bring up:
|
||||||
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-true}"
|
# none - No cluster monitoring setup
|
||||||
|
# influxdb - Heapster, InfluxDB, and Grafana
|
||||||
|
# google - Heapster, Google Cloud Monitoring, and Google Cloud Logging
|
||||||
|
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-influxdb}"
|
||||||
|
|
||||||
# Extra options to set on the Docker command line. This is useful for setting
|
# Extra options to set on the Docker command line. This is useful for setting
|
||||||
# --insecure-registry for local registries.
|
# --insecure-registry for local registries.
|
||||||
|
@ -44,8 +44,11 @@ LOGGING_DESTINATION=elasticsearch
|
|||||||
ENABLE_CLUSTER_LOGGING=false
|
ENABLE_CLUSTER_LOGGING=false
|
||||||
ELASTICSEARCH_LOGGING_REPLICAS=1
|
ELASTICSEARCH_LOGGING_REPLICAS=1
|
||||||
|
|
||||||
# Optional: When set to true, heapster, Influxdb and Grafana will be setup as part of the cluster bring up.
|
# Optional: Cluster monitoring to setup as part of the cluster bring up:
|
||||||
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-true}"
|
# none - No cluster monitoring setup
|
||||||
|
# influxdb - Heapster, InfluxDB, and Grafana
|
||||||
|
# google - Heapster, Google Cloud Monitoring, and Google Cloud Logging
|
||||||
|
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-influxdb}"
|
||||||
|
|
||||||
# Optional: Install cluster DNS.
|
# Optional: Install cluster DNS.
|
||||||
ENABLE_CLUSTER_DNS=true
|
ENABLE_CLUSTER_DNS=true
|
||||||
|
Loading…
Reference in New Issue
Block a user