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**.
8
+
9
+
----
2
10
# AWS EKS Thanos Terraform module
3
11
4
12
A Terraform module to deploy the [Thanos](https://thanos.io/) on Amazon EKS cluster.
@@ -8,29 +16,27 @@ A Terraform module to deploy the [Thanos](https://thanos.io/) on Amazon EKS clus
8
16
9
17
---
10
18
11
-
## Related Projects
19
+
## Supported Terraform provider versions
12
20
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.
@@ -69,7 +75,7 @@ See [basic example](examples/basic) for further information.
69
75
| <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`|
70
76
| <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`|
71
77
| <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`|
72
-
| <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`|
78
+
| <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`|
73
79
| <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)`|
74
80
| <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`|
75
81
| <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)`|
@@ -272,20 +278,22 @@ details.
272
278
273
279
See [LICENSE](LICENSE) for full details.
274
280
275
-
Licensed to the Apache Software Foundation (ASF) under one
276
-
or more contributor license agreements. See the NOTICE file
277
-
distributed with this work for additional information
278
-
regarding copyright ownership. The ASF licenses this file
279
-
to you under the Apache License, Version 2.0 (the
280
-
"License"); you may not use this file except in compliance
281
-
with the License. You may obtain a copy of the License at
282
-
283
-
https://www.apache.org/licenses/LICENSE-2.0
284
-
285
-
Unless required by applicable law or agreed to in writing,
286
-
software distributed under the License is distributed on an
287
-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
288
-
KIND, either express or implied. See the License for the
289
-
specific language governing permissions and limitations
290
-
under the License.
281
+
```plan
282
+
Licensed to the Apache Software Foundation (ASF) under one
283
+
or more contributor license agreements. See the NOTICE file
284
+
distributed with this work for additional information
285
+
regarding copyright ownership. The ASF licenses this file
286
+
to you under the Apache License, Version 2.0 (the
287
+
"License"); you may not use this file except in compliance
288
+
with the License. You may obtain a copy of the License at
289
+
290
+
<https://www.apache.org/licenses/LICENSE-2.0>
291
+
292
+
Unless required by applicable law or agreed to in writing,
293
+
software distributed under the License is distributed on an
294
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
295
+
KIND, either express or implied. See the License for the
296
+
specific language governing permissions and limitations
0 commit comments