Skip to content
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

Fixed broken "tutum/curl" image in Notebook tests tests #3252

Merged
merged 1 commit into from
Jun 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/models/custom_metrics/customMetrics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
"source": [
"%%writefile get-metrics.sh\n",
"\n",
"kubectl run --quiet=true -it --rm curlmetrics --image=tutum/curl --restart=Never -- \\\n",
"kubectl run --quiet=true -it --rm curlmetrics --image=radial/busyboxplus:curl --restart=Never -- \\\n",
" curl -s seldon-core-analytics-prometheus-seldon.seldon-system/api/v1/query?query=mycounter_total"
]
},
Expand Down
2 changes: 1 addition & 1 deletion examples/models/custom_metrics/get-metrics.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

kubectl run --quiet=true -it --rm curlmetrics --image=tutum/curl --restart=Never -- \
kubectl run --quiet=true -it --rm curlmetrics --image=radial/busyboxplus:curl --restart=Never -- \
curl -s seldon-core-analytics-prometheus-seldon.seldon-system/api/v1/query?query=mycounter_total
2 changes: 1 addition & 1 deletion examples/models/custom_metrics/tfservingMetrics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
"metadata": {},
"outputs": [],
"source": [
"responseRaw=!kubectl run --quiet=true -it --rm curl --image=tutum/curl --restart=Never -- curl -s seldon-core-analytics-prometheus-seldon.seldon-system/api/v1/query?query=:tensorflow:core:graph_runs"
"responseRaw=!kubectl run --quiet=true -it --rm curl --image=radial/busyboxplus:curl --restart=Never -- curl -s seldon-core-analytics-prometheus-seldon.seldon-system/api/v1/query?query=:tensorflow:core:graph_runs"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
}
],
"source": [
"metrics =! kubectl run --quiet=true -it --rm curlmetrics --image=tutum/curl --restart=Never -- \\\n",
"metrics =! kubectl run --quiet=true -it --rm curlmetrics --image=radial/busyboxplus:curl --restart=Never -- \\\n",
" curl -s seldon-core-analytics-prometheus-seldon.seldon-system/api/v1/query?query=instance_counter_total\n",
"\n",
"json.loads(metrics[0])[\"data\"][\"result\"][0][\"value\"][1]"
Expand All @@ -353,7 +353,7 @@
}
],
"source": [
"metrics =! kubectl run --quiet=true -it --rm curlmetrics --image=tutum/curl --restart=Never -- \\\n",
"metrics =! kubectl run --quiet=true -it --rm curlmetrics --image=radial/busyboxplus:curl --restart=Never -- \\\n",
" curl -s seldon-core-analytics-prometheus-seldon.seldon-system/api/v1/query?query=requests_counter_total\n",
"\n",
"json.loads(metrics[0])[\"data\"][\"result\"][0][\"value\"][1]"
Expand Down