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
[Labyrinth Labs](https://lablabs.io/) is a one-stop-shop for **DevOps, Cloud & Kubernetes**! We specialize in creating **powerful**, **scalable** and **cloud-native platforms** tailored to elevate your business.
6
+
7
+
[As a team of experienced DevOps engineers](https://lablabs.io/about/), we know how to help our customers start their journey in the cloud, address the issues they have in their current setups and provide a **strategic solution to transform their infrastructure**.
A Terraform module to deploy the [cluster autoscaler](https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler) addon on Amazon EKS cluster.
@@ -8,29 +16,27 @@ A Terraform module to deploy the [cluster autoscaler](https://github.com/kuberne
8
16
9
17
---
10
18
11
-
## Related Projects
12
-
13
-
Check out other [Terraform Kubernetes addons](https://github.com/orgs/lablabs/repositories?q=terraform-aws-eks&type=public&language=&sort=).
We help companies build, run, deploy and scale software and infrastructure by embracing the right technologies and principles. Check out our website at <https://lablabs.io/>.
21
+
While we are not setting upper bound on the Terraform providers used by the addon we are testing its functionality only against versions specified in the [`.terraform.lock.hcl`](.terraform.lock.hcl) file.
18
22
19
23
## Deployment methods
20
24
21
25
### Helm
26
+
22
27
Deploy Helm chart via Helm resource (default method, set `enabled = true`)
23
28
24
29
### Argo Kubernetes
30
+
25
31
Deploy Helm chart as ArgoCD Application via Kubernetes manifest resource (set `enabled = true` and `argo_enabled = true`)
26
32
27
-
> **Warning**
28
-
>
33
+
> [!WARNING]
29
34
> When deploying with ArgoCD application, Kubernetes terraform provider requires access to Kubernetes cluster API during plan time. This introduces potential issue when you want to deploy the cluster with this addon at the same time, during the same Terraform run.
30
35
>
31
36
> To overcome this issue, the module deploys the ArgoCD application object using the Helm provider, which does not require API access during plan. If you want to deploy the application using this workaround, you can set the `argo_helm_enabled` variable to `true`.
32
37
33
38
### Argo Helm
39
+
34
40
Deploy Helm chart as ArgoCD Application via Helm resource (set `enabled = true`, `argo_enabled = true` and `argo_helm_enabled = true`)
35
41
36
42
## Examples
@@ -40,18 +46,18 @@ See [basic example](examples/basic) for further information.
@@ -71,7 +77,7 @@ See [basic example](examples/basic) for further information.
71
77
| <aname="input_argo_helm_enabled"></a> [argo\_helm\_enabled](#input\_argo\_helm\_enabled)| If set to `true`, the ArgoCD Application manifest will be deployed using Kubernetes provider as a Helm release. Otherwise it'll be deployed as a Kubernetes manifest. See README for more info. Defaults to `false`. |`bool`|
72
78
| <aname="input_argo_helm_values"></a> [argo\_helm\_values](#input\_argo\_helm\_values)| Value overrides to use when deploying ArgoCD Application object with Helm. Defaults to `""`. |`string`|
73
79
| <aname="input_argo_helm_wait_backoff_limit"></a> [argo\_helm\_wait\_backoff\_limit](#input\_argo\_helm\_wait\_backoff\_limit)| Backoff limit for ArgoCD Application Helm release wait job. Defaults to `6`. |`number`|
74
-
| <aname="input_argo_helm_wait_kubectl_version"></a> [argo\_helm\_wait\_kubectl\_version](#input\_argo\_helm\_wait\_kubectl\_version)| Version of kubectl to use for ArgoCD Application wait job. Defaults to `1.33.2`. |`string`|
80
+
| <aname="input_argo_helm_wait_kubectl_version"></a> [argo\_helm\_wait\_kubectl\_version](#input\_argo\_helm\_wait\_kubectl\_version)| Version of kubectl to use for ArgoCD Application wait job. Defaults to `1.33.3`. |`string`|
75
81
| <aname="input_argo_helm_wait_node_selector"></a> [argo\_helm\_wait\_node\_selector](#input\_argo\_helm\_wait\_node\_selector)| Node selector for ArgoCD Application Helm release wait job. Defaults to `{}`. |`map(string)`|
76
82
| <aname="input_argo_helm_wait_timeout"></a> [argo\_helm\_wait\_timeout](#input\_argo\_helm\_wait\_timeout)| Timeout for ArgoCD Application Helm release wait job. Defaults to `10m`. |`string`|
77
83
| <aname="input_argo_helm_wait_tolerations"></a> [argo\_helm\_wait\_tolerations](#input\_argo\_helm\_wait\_tolerations)| Tolerations for ArgoCD Application Helm release wait job. Defaults to `[]`. |`list(any)`|
@@ -186,20 +192,22 @@ details.
186
192
187
193
See [LICENSE](LICENSE) for full details.
188
194
189
-
Licensed to the Apache Software Foundation (ASF) under one
190
-
or more contributor license agreements. See the NOTICE file
191
-
distributed with this work for additional information
192
-
regarding copyright ownership. The ASF licenses this file
193
-
to you under the Apache License, Version 2.0 (the
194
-
"License"); you may not use this file except in compliance
195
-
with the License. You may obtain a copy of the License at
196
-
197
-
https://www.apache.org/licenses/LICENSE-2.0
198
-
199
-
Unless required by applicable law or agreed to in writing,
200
-
software distributed under the License is distributed on an
201
-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
202
-
KIND, either express or implied. See the License for the
203
-
specific language governing permissions and limitations
204
-
under the License.
195
+
```plan
196
+
Licensed to the Apache Software Foundation (ASF) under one
197
+
or more contributor license agreements. See the NOTICE file
198
+
distributed with this work for additional information
199
+
regarding copyright ownership. The ASF licenses this file
200
+
to you under the Apache License, Version 2.0 (the
201
+
"License"); you may not use this file except in compliance
202
+
with the License. You may obtain a copy of the License at
203
+
204
+
<https://www.apache.org/licenses/LICENSE-2.0>
205
+
206
+
Unless required by applicable law or agreed to in writing,
207
+
software distributed under the License is distributed on an
208
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
209
+
KIND, either express or implied. See the License for the
210
+
specific language governing permissions and limitations
0 commit comments