Skip to content

Commit 180a496

Browse files
committed
eval
1 parent ff6f463 commit 180a496

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ci/agent-values/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
agents:
22
image:
3-
tag: 7.51.0-rc.1
3+
tag: 7.55.0
44
tagSuffix: jmx
55
datadog:
66
apiKey: $DD_API_KEY

ci/scripts/ci-deploy-agent.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ install_agent() {
2020
helm repo add datadog https://helm.datadoghq.com
2121

2222
# --install will run `helm install` if not already present.
23-
helm_cmd="helm upgrade "${releaseName}" -n "${namespace}" datadog/datadog --install \
23+
helm_cmd="helm --debug upgrade "${releaseName}" -n "${namespace}" datadog/datadog --install \
2424
-f ./ci/agent-values/values.yaml \
2525
--set datadog.tags=env:"${namespace}""
2626

2727
if [ -n "$nodegroup" ]; then
2828
helm_cmd+=" --set agents.nodeSelector.\"alpha\\.eksctl\\.io/nodegroup-name\"=${nodegroup}"
2929
fi
3030

31+
eval $helm_cmd
3132
}
3233

3334
###########################################################################################################

0 commit comments

Comments
 (0)