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
e7aca5c3
Commit
e7aca5c3
authored
Mar 11, 2015
by
Vishnu Kannan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable heapster based cluster monitoring by default on other cluster providers, expect for GKE.
parent
663bdb91
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
2 deletions
+17
-2
config-default.sh
cluster/aws/config-default.sh
+1
-1
config-default.sh
cluster/azure/config-default.sh
+3
-0
config-default.sh
cluster/gce/config-default.sh
+1
-1
config-default.sh
cluster/gke/config-default.sh
+3
-0
config-default.sh
cluster/rackspace/config-default.sh
+3
-0
config-default.sh
cluster/vagrant/config-default.sh
+3
-0
config-default.sh
cluster/vsphere/config-default.sh
+3
-0
No files found.
cluster/aws/config-default.sh
View file @
e7aca5c3
...
@@ -46,7 +46,7 @@ ENABLE_DOCKER_REGISTRY_CACHE=true
...
@@ -46,7 +46,7 @@ ENABLE_DOCKER_REGISTRY_CACHE=true
# Optional: Install node monitoring.
# Optional: Install node monitoring.
ENABLE_NODE_MONITORING
=
"
${
KUBE_ENABLE_NODE_MONITORING
:-
true
}
"
ENABLE_NODE_MONITORING
=
"
${
KUBE_ENABLE_NODE_MONITORING
:-
true
}
"
# Optional: When set to true, heapster will be setup as part of the cluster bring up.
# 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
}
"
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
true
}
"
# Optional: Enable node logging.
# Optional: Enable node logging.
...
...
cluster/azure/config-default.sh
View file @
e7aca5c3
...
@@ -45,5 +45,8 @@ LOGGING_DESTINATION=elasticsearch # options: elasticsearch, gcp
...
@@ -45,5 +45,8 @@ 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.
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
true
}
"
# Admission Controllers to invoke prior to persisting objects in cluster
# Admission Controllers to invoke prior to persisting objects in cluster
ADMISSION_CONTROL
=
NamespaceAutoProvision,LimitRanger,ResourceQuota
ADMISSION_CONTROL
=
NamespaceAutoProvision,LimitRanger,ResourceQuota
cluster/gce/config-default.sh
View file @
e7aca5c3
...
@@ -86,7 +86,7 @@ ENABLE_DOCKER_REGISTRY_CACHE=true
...
@@ -86,7 +86,7 @@ ENABLE_DOCKER_REGISTRY_CACHE=true
# Optional: Install node monitoring.
# Optional: Install node monitoring.
ENABLE_NODE_MONITORING="
${
KUBE_ENABLE_NODE_MONITORING
:-
true
}
"
ENABLE_NODE_MONITORING="
${
KUBE_ENABLE_NODE_MONITORING
:-
true
}
"
# Optional: When set to true, heapster will be setup as part of the cluster bring up.
# 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
}
"
ENABLE_CLUSTER_MONITORING="
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
true
}
"
# Optional: Enable node logging.
# Optional: Enable node logging.
...
...
cluster/gke/config-default.sh
View file @
e7aca5c3
...
@@ -29,3 +29,6 @@ LOGGING_DESTINATION=gcp # options: elasticsearch, gcp
...
@@ -29,3 +29,6 @@ LOGGING_DESTINATION=gcp # options: elasticsearch, gcp
# Optional: When set to true, Elasticsearch and Kibana will be setup as part of the cluster bring up.
# Optional: When set to true, Elasticsearch and Kibana will be setup as part of the cluster bring up.
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.
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
false
}
"
cluster/rackspace/config-default.sh
View file @
e7aca5c3
...
@@ -49,6 +49,9 @@ LOGGING_DESTINATION=elasticsearch
...
@@ -49,6 +49,9 @@ 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.
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
true
}
"
# Optional: Install cluster DNS.
# Optional: Install cluster DNS.
ENABLE_CLUSTER_DNS
=
true
ENABLE_CLUSTER_DNS
=
true
DNS_SERVER_IP
=
"10.0.0.10"
DNS_SERVER_IP
=
"10.0.0.10"
...
...
cluster/vagrant/config-default.sh
View file @
e7aca5c3
...
@@ -62,6 +62,9 @@ LOGGING_DESTINATION=elasticsearch
...
@@ -62,6 +62,9 @@ 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.
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
true
}
"
# 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.
DOCKER_OPTS
=
""
DOCKER_OPTS
=
""
...
...
cluster/vsphere/config-default.sh
View file @
e7aca5c3
...
@@ -44,6 +44,9 @@ LOGGING_DESTINATION=elasticsearch
...
@@ -44,6 +44,9 @@ 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.
ENABLE_CLUSTER_MONITORING
=
"
${
KUBE_ENABLE_CLUSTER_MONITORING
:-
true
}
"
# Optional: Install cluster DNS.
# Optional: Install cluster DNS.
ENABLE_CLUSTER_DNS
=
true
ENABLE_CLUSTER_DNS
=
true
DNS_SERVER_IP
=
"10.244.240.240"
DNS_SERVER_IP
=
"10.244.240.240"
...
...
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