File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ locals {
52
52
command = [" /var/run/argocd/argocd-cmp-server" ]
53
53
# Note: Argo CD official image ships Helm and Kustomize. No need to build a custom image to use "kustomized-helm" plugin.
54
54
image = " quay.io/argoproj/argocd:${ local . argocd_version } "
55
+ args = [" --loglevel=warn" ]
55
56
securityContext = {
56
57
runAsNonRoot = true
57
58
runAsUser = 999
@@ -75,14 +76,15 @@ locals {
75
76
name = " kustomized-helm-cmp-tmp"
76
77
}
77
78
]
78
- # The extra containers of the repo_server pod must have resource requests/limits in order to allow this component
79
+ # The extra containers of the repo_server pod must have resource requests/limits in order to allow this component
79
80
# to autoscale properly.
80
81
resources = var.resources.repo_server # TODO Maybe this resources should be different from the repo_server one.
81
82
},
82
83
{
83
84
name = " helmfile-cmp"
84
85
command = [" /var/run/argocd/argocd-cmp-server" ]
85
86
image = " ghcr.io/camptocamp/docker-argocd-cmp-helmfile:${ var . helmfile_cmp_version } "
87
+ args = [" --loglevel=warn" ]
86
88
env = var.helmfile_cmp_env_variables
87
89
securityContext = {
88
90
runAsNonRoot = true
@@ -104,7 +106,7 @@ locals {
104
106
name = " helmfile-cmp-tmp"
105
107
}
106
108
]
107
- # The extra containers of the repo_server pod must have resource requests/limits in order to allow this component
109
+ # The extra containers of the repo_server pod must have resource requests/limits in order to allow this component
108
110
# to autoscale properly.
109
111
resources = var.resources.repo_server # TODO Maybe this resources should be different from the repo_server one.
110
112
}
You can’t perform that action at this time.
0 commit comments