Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(helmfile): use by default warn loglevel #98

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ The following requirements are needed by this module:

The following providers are used by this module:

- [[provider_null]] <<provider_null,null>> (>= 3)

- [[provider_jwt]] <<provider_jwt,jwt>> (>= 1.1)

- [[provider_time]] <<provider_time,time>> (>= 0.9)
Expand All @@ -233,8 +235,6 @@ The following providers are used by this module:

- [[provider_argocd]] <<provider_argocd,argocd>> (>= 5)

- [[provider_null]] <<provider_null,null>> (>= 3)

=== Resources

The following resources are used by this module:
Expand Down Expand Up @@ -302,7 +302,7 @@ Description: Override of target revision of the application chart.

Type: `string`

Default: `"v3.5.2"`
Default: `"v4.0.0"`

==== [[input_cluster_issuer]] <<input_cluster_issuer,cluster_issuer>>

Expand Down Expand Up @@ -715,7 +715,7 @@ Description: Map of extra accounts that were created and their tokens.
|[[input_target_revision]] <<input_target_revision,target_revision>>
|Override of target revision of the application chart.
|`string`
|`"v3.5.2"`
|`"v4.0.0"`
|no

|[[input_cluster_issuer]] <<input_cluster_issuer,cluster_issuer>>
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ Description: The Argo CD accounts pipeline tokens.
[cols="a,a",options="header,autowidth"]
|===
|Name |Version
|[[provider_random]] <<provider_random,random>> |>= 3
|[[provider_jwt]] <<provider_jwt,jwt>> |>= 1.1
|[[provider_time]] <<provider_time,time>> |>= 0.9
|[[provider_random]] <<provider_random,random>> |>= 3
|[[provider_helm]] <<provider_helm,helm>> |>= 2
|[[provider_argocd]] <<provider_argocd,argocd>> |>= 6
|[[provider_utils]] <<provider_utils,utils>> |>= 1.6
Expand Down
6 changes: 4 additions & 2 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ locals {
command = ["/var/run/argocd/argocd-cmp-server"]
# Note: Argo CD official image ships Helm and Kustomize. No need to build a custom image to use "kustomized-helm" plugin.
image = "quay.io/argoproj/argocd:${local.argocd_version}"
args = ["--loglevel=warn"]
securityContext = {
runAsNonRoot = true
runAsUser = 999
Expand All @@ -75,14 +76,15 @@ locals {
name = "kustomized-helm-cmp-tmp"
}
]
# The extra containers of the repo_server pod must have resource requests/limits in order to allow this component
# The extra containers of the repo_server pod must have resource requests/limits in order to allow this component
# to autoscale properly.
resources = var.resources.repo_server # TODO Maybe this resources should be different from the repo_server one.
},
{
name = "helmfile-cmp"
command = ["/var/run/argocd/argocd-cmp-server"]
image = "ghcr.io/camptocamp/docker-argocd-cmp-helmfile:${var.helmfile_cmp_version}"
args = ["--loglevel=warn"]
env = var.helmfile_cmp_env_variables
securityContext = {
runAsNonRoot = true
Expand All @@ -104,7 +106,7 @@ locals {
name = "helmfile-cmp-tmp"
}
]
# The extra containers of the repo_server pod must have resource requests/limits in order to allow this component
# The extra containers of the repo_server pod must have resource requests/limits in order to allow this component
# to autoscale properly.
resources = var.resources.repo_server # TODO Maybe this resources should be different from the repo_server one.
}
Expand Down