Makefile in the root doesn't have the ARGO_NAMESPACE constant defined and so make port-forward-argocd fails.
Unless I'm missing a reason not to do this, the fix is simple:
# renovate: datasource=github-tags depName=jaegertracing/jaeger-operator
JAEGER_VERSION ?= v1.42.0
TOOLKIT_NAMESPACE ?= keptn-lifecycle-toolkit-system
PODTATO_NAMESPACE ?= podtato-kubectl
GRAFANA_PORT_FORWARD ?= 3000
....
should be modified to:
# renovate: datasource=github-tags depName=jaegertracing/jaeger-operator
JAEGER_VERSION ?= v1.42.0
TOOLKIT_NAMESPACE ?= keptn-lifecycle-toolkit-system
PODTATO_NAMESPACE ?= podtato-kubectl
GRAFANA_PORT_FORWARD ?= 3000
ARGO_NAMESPACE ?= argocd
....
Makefile in the root doesn't have the
ARGO_NAMESPACEconstant defined and somake port-forward-argocdfails.Unless I'm missing a reason not to do this, the fix is simple:
should be modified to: