-
Notifications
You must be signed in to change notification settings - Fork 68
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/argo workflow metrics #2151
Conversation
…xport metrics to Datadog
…eus metrics that Datadog can scrape. For now, we're going to leave this as a separate branch while we figure out the cost-benefit on exporting these metrics, and if it makes sense to do this by default.
…into feat/argoWorkflowMetrics
…ed by the Argo workflow controller.
…/cloud-automation into feat/argoWorkflowMetrics
…nexpectedly upgrade an Argo workflows deployment
…/cloud-automation into feat/argoWorkflowMetrics
@@ -243,7 +243,7 @@ if [[ "$ctxNamespace" == "default" || "$ctxNamespace" == "null" ]]; then | |||
|
|||
helm repo add argo https://argoproj.github.io/argo-helm --force-update 2> >(grep -v 'This is insecure' >&2) | |||
helm repo update 2> >(grep -v 'This is insecure' >&2) | |||
helm upgrade --install argo argo/argo-workflows -n argo -f ${valuesFile} | |||
helm upgrade --install argo argo/argo-workflows -n argo -f ${valuesFile} --version 0.22.11 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice if we could set that as the default but allow it to be overwritten, similar to this.
@@ -243,7 +243,7 @@ if [[ "$ctxNamespace" == "default" || "$ctxNamespace" == "null" ]]; then | |||
|
|||
helm repo add argo https://argoproj.github.io/argo-helm --force-update 2> >(grep -v 'This is insecure' >&2) | |||
helm repo update 2> >(grep -v 'This is insecure' >&2) | |||
helm upgrade --install argo argo/argo-workflows -n argo -f ${valuesFile} | |||
helm upgrade --install argo argo/argo-workflows -n argo -f ${valuesFile} --version 0.22.11 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So instead of harcoding this version, let's try to read from manifest, with this version as a default.
See karpenter script
Jira Ticket: PXP-xxxx
New Features
Breaking Changes
Bug Fixes
Added annotations to the Argo workflow controller pod to enable Datadog to read metrics from it.
Improvements
Dependency updates
Deployment changes