You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 9, 2023. It is now read-only.
Tarmak supports a number of Kubernetes addons including Kubernetes Dashboard, Cluster Autoscaler and Tiller. The following `tarmak.yaml` snippet shows how you would enable Cluster Autoscaler.
156
+
Tarmak supports deploying `Cluster Autoscaler <https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler>`_ when spinning up a Kubernetes cluster. The following `tarmak.yaml` snippet shows how you would enable Cluster Autoscaler.
157
157
158
158
.. code-block:: yaml
159
159
@@ -162,9 +162,37 @@ Tarmak supports a number of Kubernetes addons including Kubernetes Dashboard, Cl
162
162
enabled: true
163
163
...
164
164
165
-
The above configuration would deploy Cluster Autoscaler with an image of `gcr.io/google_containers/cluster-autoscaler` using the recommend version based on the version of your Kubernetes cluster. The configuration block also accepts two optional fields of `image` and `version` allowing you to change these defaults. Note that the final image tag used when deploying the autoscaler will be the configured version prepended with the letter `v`.
165
+
The above configuration would deploy Cluster Autoscaler with an image of `gcr.io/google_containers/cluster-autoscaler` using the recommend version based on the version of your Kubernetes cluster. The configuration block accepts two optional fields of `image` and `version` allowing you to change these defaults. Note that the final image tag used when deploying Cluster Autoscaler will be the configured version prepended with the letter `v`.
166
+
167
+
The current implementation will configure the first instance pool of type worker in your cluster configuration to scale between `minCount` and `maxCount`. We plan to add support for an arbitrary number of worker instance pools.
168
+
169
+
Dashboard
170
+
~~~~~~~~~
171
+
172
+
Tarmak supports deploying `Kubernetes Dashboard <https://github.com/kubernetes/dashboard>`_ when spinning up a Kubernetes cluster. The following `tarmak.yaml` snippet shows how you would enable Kubernetes Dashboard.
173
+
174
+
.. code-block:: yaml
175
+
176
+
kubernetes:
177
+
dashboard:
178
+
enabled: true
179
+
...
180
+
181
+
The above configuration would deploy Kubernetes Dashboard with an image of `gcr.io/google_containers/kubernetes-dashboard-amd64` with a fixed tag. The configuration block accepts two optional fields of `image` and `version` allowing you to change these defaults. The `version` field directly translates to the image tag used.
182
+
183
+
Tiller
184
+
~~~~~~
185
+
186
+
Tarmak supports deploying `Tiller <https://github.com/kubernetes/helm>`_ when spinning up a Kubernetes cluster. The following `tarmak.yaml` snippet shows how you would enable Tiller.
187
+
188
+
.. code-block:: yaml
189
+
190
+
kubernetes:
191
+
tiller:
192
+
enabled: true
193
+
...
166
194
167
-
This configuration works similarly for Dashboard and Tiller using images of `gcr.io/google_containers/kubernetes-dashboard-amd64` and `gcr.io/kubernetes-helm/tiller` respectively by default.
195
+
The above configuration would deploy Tiller with an image of `gcr.io/kubernetes-helm/tiller` with a fixed tag. The configuration block accepts two optional fields of `image` and `version` allowing you to change these defaults. The `version` field directly translates to the image tag used.
0 commit comments