Skip to content

Commit

Permalink
Merge pull request #9 from DNXLabs/issue_8_bump_helm_versions
Browse files Browse the repository at this point in the history
Resolves issue #8
  • Loading branch information
mosampaio committed Dec 1, 2021
2 parents daf73fa + 46c7d17 commit 11ac595
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -67,7 +67,7 @@ You should get as an output:
| create\_namespace | Whether to create Kubernetes namespace with name defined by `namespace`. | `bool` | `true` | no |
| enabled | Variable indicating whether deployment is enabled. | `bool` | `true` | no |
| helm\_chart\_repo | Argo CD repository name. | `string` | `"https://argoproj.github.io/argo-helm"` | no |
| helm\_services | n/a | `list` | <pre>[<br> {<br> "chart_version": "3.2.3",<br> "name": "argo-cd",<br> "release_name": "argo-cd",<br> "settings": {}<br> },<br> {<br> "chart_version": "0.5.2",<br> "name": "argo-rollouts",<br> "release_name": "argo-rollouts",<br> "settings": {}<br> }<br>]</pre> | no |
| helm\_services | n/a | `list` | <pre>[<br> {<br> "chart_version": "3.26.12",<br> "name": "argo-cd",<br> "release_name": "argo-cd",<br> "settings": {}<br> },<br> {<br> "chart_version": "2.5.0",<br> "name": "argo-rollouts",<br> "release_name": "argo-rollouts",<br> "settings": {}<br> }<br>]</pre> | no |
| mod\_dependency | Dependence variable binds all AWS resources allocated by this module, dependent modules reference this variable. | `any` | `null` | no |
| namespace | Kubernetes namespace to deploy Argo CD Helm chart. | `string` | `"argocd"` | no |
| settings | Additional settings which will be passed to the Helm chart values. | `map` | `{}` | no |
Expand Down
4 changes: 2 additions & 2 deletions _variables.tf
Expand Up @@ -9,13 +9,13 @@ variable "helm_services" {
{
name = "argo-cd"
release_name = "argo-cd"
chart_version = "3.2.3"
chart_version = "3.26.12"
settings = {}
},
{
name = "argo-rollouts"
release_name = "argo-rollouts"
chart_version = "0.5.2"
chart_version = "2.5.0"
settings = {}
}
]
Expand Down

0 comments on commit 11ac595

Please sign in to comment.