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 [AWS Load Balancer Controller](https://github.com/kubernetes-sigs/aws-load-balancer-controller) on Amazon EKS cluster.
@@ -19,29 +27,27 @@ A Terraform module to deploy the [AWS Load Balancer Controller](https://github.c
19
27
20
28
---
21
29
22
-
## Related Projects
23
-
24
-
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/>.
32
+
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.
29
33
30
34
## Deployment methods
31
35
32
36
### Helm
37
+
33
38
Deploy Helm chart via Helm resource (default method, set `enabled = true`)
34
39
35
40
### Argo Kubernetes
41
+
36
42
Deploy Helm chart as ArgoCD Application via Kubernetes manifest resource (set `enabled = true` and `argo_enabled = true`)
37
43
38
-
> **Warning**
39
-
>
44
+
> [!WARNING]
40
45
> 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.
41
46
>
42
47
> 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`.
43
48
44
49
### Argo Helm
50
+
45
51
Deploy Helm chart as ArgoCD Application via Helm resource (set `enabled = true`, `argo_enabled = true` and `argo_helm_enabled = true`)
46
52
47
53
## Examples
@@ -51,18 +57,18 @@ See [basic example](examples/basic) for further information.
@@ -82,7 +88,7 @@ See [basic example](examples/basic) for further information.
82
88
| <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`|
83
89
| <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`|
84
90
| <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`|
85
-
| <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`|
91
+
| <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`|
86
92
| <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)`|
87
93
| <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`|
88
94
| <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)`|
@@ -198,20 +204,22 @@ details.
198
204
199
205
See [LICENSE](LICENSE) for full details.
200
206
201
-
Licensed to the Apache Software Foundation (ASF) under one
202
-
or more contributor license agreements. See the NOTICE file
203
-
distributed with this work for additional information
204
-
regarding copyright ownership. The ASF licenses this file
205
-
to you under the Apache License, Version 2.0 (the
206
-
"License"); you may not use this file except in compliance
207
-
with the License. You may obtain a copy of the License at
208
-
209
-
https://www.apache.org/licenses/LICENSE-2.0
210
-
211
-
Unless required by applicable law or agreed to in writing,
212
-
software distributed under the License is distributed on an
213
-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
214
-
KIND, either express or implied. See the License for the
215
-
specific language governing permissions and limitations
216
-
under the License.
207
+
```plan
208
+
Licensed to the Apache Software Foundation (ASF) under one
209
+
or more contributor license agreements. See the NOTICE file
210
+
distributed with this work for additional information
211
+
regarding copyright ownership. The ASF licenses this file
212
+
to you under the Apache License, Version 2.0 (the
213
+
"License"); you may not use this file except in compliance
214
+
with the License. You may obtain a copy of the License at
215
+
216
+
<https://www.apache.org/licenses/LICENSE-2.0>
217
+
218
+
Unless required by applicable law or agreed to in writing,
219
+
software distributed under the License is distributed on an
220
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
221
+
KIND, either express or implied. See the License for the
222
+
specific language governing permissions and limitations
0 commit comments