Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
a687d62b
Commit
a687d62b
authored
Jun 01, 2015
by
Eric Tune
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9037 from rjnagal/monitoring
Fix cluster monitoring setup config.
parents
ccea8faf
3659aef6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
10 deletions
+25
-10
config-default.sh
cluster/azure/config-default.sh
+5
-2
config-default.sh
cluster/gke/config-default.sh
+5
-2
config-default.sh
cluster/rackspace/config-default.sh
+5
-2
config-default.sh
cluster/vagrant/config-default.sh
+5
-2
config-default.sh
cluster/vsphere/config-default.sh
+5
-2
No files found.
cluster/azure/config-default.sh
View file @
a687d62b
...
...
@@ -45,8 +45,11 @@ LOGGING_DESTINATION=elasticsearch # options: elasticsearch, gcp
ENABLE_CLUSTER_LOGGING
=
false
ELASTICSEARCH_LOGGING_REPLICAS
=
1
# Optional: When set to true, heapster, Influxdb and grafana will be setup as part of the cluster bring up.
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
true
}
"
# Optional: Cluster monitoring to setup as part of the cluster bring up:
# 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_CONTROL
=
NamespaceLifecycle,NamespaceExists,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota
cluster/gke/config-default.sh
View file @
a687d62b
...
...
@@ -30,5 +30,8 @@ LOGGING_DESTINATION=gcp # options: elasticsearch, gcp
ENABLE_CLUSTER_LOGGING
=
false
ELASTICSEARCH_LOGGING_REPLICAS
=
1
# Optional: When set to true, heapster, Influxdb and Grafana will be setup as part of the cluster bring up.
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
false
}
"
# Optional: Cluster monitoring to setup as part of the cluster bring up:
# 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
}
"
cluster/rackspace/config-default.sh
View file @
a687d62b
...
...
@@ -49,8 +49,11 @@ LOGGING_DESTINATION=elasticsearch
ENABLE_CLUSTER_LOGGING
=
false
ELASTICSEARCH_LOGGING_REPLICAS
=
1
# Optional: When set to true, heapster, Influxdb and Grafana will be setup as part of the cluster bring up.
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
true
}
"
# Optional: Cluster monitoring to setup as part of the cluster bring up:
# 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.
ENABLE_CLUSTER_DNS
=
true
...
...
cluster/vagrant/config-default.sh
View file @
a687d62b
...
...
@@ -63,8 +63,11 @@ LOGGING_DESTINATION=elasticsearch
ENABLE_CLUSTER_LOGGING
=
false
ELASTICSEARCH_LOGGING_REPLICAS
=
1
# Optional: When set to true, heapster, Influxdb and Grafana will be setup as part of the cluster bring up.
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
true
}
"
# Optional: Cluster monitoring to setup as part of the cluster bring up:
# 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
# --insecure-registry for local registries.
...
...
cluster/vsphere/config-default.sh
View file @
a687d62b
...
...
@@ -44,8 +44,11 @@ LOGGING_DESTINATION=elasticsearch
ENABLE_CLUSTER_LOGGING
=
false
ELASTICSEARCH_LOGGING_REPLICAS
=
1
# Optional: When set to true, heapster, Influxdb and Grafana will be setup as part of the cluster bring up.
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
true
}
"
# Optional: Cluster monitoring to setup as part of the cluster bring up:
# 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.
ENABLE_CLUSTER_DNS
=
true
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment