Skip to content

Commit

Permalink
Update devbox scripts to use dockerhub release images when using --pu…
Browse files Browse the repository at this point in the history
…blic. (#224)
  • Loading branch information
jmw51798 committed Jul 6, 2023
1 parent fb610b1 commit f5a6fae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dev/devbox/source/kernel-collector.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function print_help {
echo " --entrypoint-error <ERROR>: force entrypoint error with the specified EntrypointError <ERROR>"
echo " --ingest-dump: dump ingest messages into file '${host_data_mount_path}/${ingest_dump_file}'"
echo " --ingest-pipe: dump ingest messages into named pipe '${host_data_mount_path}/${ingest_dump_file}'"
echo " --public: use the public kernel-collector image from quay.io (default is to use localhost:5000/kernel-collector image from local registry)"
echo " --public: use the public kernel-collector image from dockerhub (default is to use localhost:5000/kernel-collector image from local registry)"
echo " --tag <TAG>: use the kernel-collector image with the specified <TAG>"
echo ' --valgrind-memcheck: run the kernel collector under `valgrind` using the memcheck tool'
echo ' --valgrind-massif: run the kernel collector under `valgrind` using the massif tool'
Expand Down Expand Up @@ -121,10 +121,10 @@ while [[ "$#" -gt 0 ]]; do
;;

--public)
image="quay.io/signalfx/splunk-network-explorer-kernel-collector"
image="otel/opentelemetry-ebpf-kernel-collector"
if [[ "${tag}" == "" ]]
then
tag=":latest-v0.9"
tag=":latest-v0.10"
fi
;;

Expand Down
6 changes: 3 additions & 3 deletions dev/devbox/source/reducer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function print_help {
echo " --help: display this help message and the container's help message"
echo " --num-shards <num>: the number of shards to run per reducer core"
echo " --prom: start prometheus"
echo " --public: use the public reducer image from quay.io (default is to use localhost:5000/reducer image from local registry)"
echo " --public: use the public reducer image from dockerhub (default is to use localhost:5000/reducer image from local registry)"
echo " --publish-ports: publish individual ports (instead of running with --network=host)"
echo " --tag: use the reducer image with the specified tag (--tag <TAG>)"
echo " args...: any additional arguments are forwarded to the container"
Expand Down Expand Up @@ -80,10 +80,10 @@ while [[ "$#" -gt 0 ]]; do
;;

--public)
image="quay.io/signalfx/splunk-network-explorer-reducer"
image="otel/opentelemetry-ebpf-reducer"
if [[ "${tag}" == "" ]]
then
tag=":latest-v0.9"
tag=":latest-v0.10"
fi
;;

Expand Down

0 comments on commit f5a6fae

Please sign in to comment.