You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: create a script to make the make target cleaner (#1711)
* fix: create a script to make the make target cleaner
Signed-off-by: Debarati Basu-Nag <dbasunag@redhat.com>
Co-Authored-By: Claude <noreply@anthropic.com>
* fix: address review comments
Signed-off-by: Debarati Basu-Nag <dbasunag@redhat.com>
* fix: mismatch in naming the make targets
Signed-off-by: Debarati Basu-Nag <dbasunag@redhat.com>
---------
Signed-off-by: Debarati Basu-Nag <dbasunag@redhat.com>
Co-authored-by: Claude <noreply@anthropic.com>
export MR_NAMESPACE=$$(kubectl get datasciencecluster default-dsc -o jsonpath='{.spec.components.modelregistry.registriesNamespace}')&&\
17
-
export MR_HOST_URL="https://$$(kubectl get service -n "$$MR_NAMESPACE" model-registry -o jsonpath='{.metadata.annotations.routing\.opendatahub\.io\/external-address-rest}')"&&\
18
-
export MR_ENDPOINT=$$(kubectl get service -n "$$MR_NAMESPACE" model-registry -o jsonpath='{.metadata.annotations.routing\.opendatahub\.io\/external-address-rest}' | cut -d: -f1)&&\
MR_NAMESPACE=$(kubectl get datasciencecluster default-dsc -o jsonpath='{.spec.components.modelregistry.registriesNamespace}')
18
+
export MR_NAMESPACE
19
+
20
+
MR_ENDPOINT=$(kubectl get service -n "${MR_NAMESPACE}" model-registry -o jsonpath='{.metadata.annotations.routing\.opendatahub\.io\/external-address-rest}')
0 commit comments