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
Hi,
we have been working with arena on microk8s with Ubuntu 18.04 long time succesfully.
But since Ubuntu 20.04 and 22.04 (and a lot of different microk8s versions) we did not get arena working.
error message when run arena install.sh is
ERROR failed to execute 'arena-kubectl cluster-info'
ERROR Please setup kubeconfig correctly before installing arena
But when manually execute arena-kubectl cluster-info systems reports all running
Any idea how to fix it?
Ubuntu 22.04 LTS
microk8s 1.22 stable
arena 0.9.0
Thanks
The text was updated successfully, but these errors were encountered:
Found the issue in script that results abort of arena installation in ubuntu 20.04 and 22.04. Script is working fine with 18.04.
Delete this lines (97-103) in install.sh would fix it:
if [[ $ONLY_BINARY != "true" ]];then
if ! ${sudo_prefix} arena-kubectl cluster-info >/dev/null 2>&1; then
logger "error" "failed to execute 'arena-kubectl cluster-info'"
logger "error" "Please setup kubeconfig correctly before installing arena"
exit 1
fi
fi
Not sure why, because arena-kubectl cluster-info response is correct, but it works.
Tested with microk8s 1.29, arena 0.9.13, ubuntu 22.04 lts
Hi,
we have been working with arena on microk8s with Ubuntu 18.04 long time succesfully.
But since Ubuntu 20.04 and 22.04 (and a lot of different microk8s versions) we did not get arena working.
error message when run arena install.sh is
ERROR failed to execute 'arena-kubectl cluster-info'
ERROR Please setup kubeconfig correctly before installing arena
But when manually execute arena-kubectl cluster-info systems reports all running
Any idea how to fix it?
Ubuntu 22.04 LTS
microk8s 1.22 stable
arena 0.9.0
Thanks
The text was updated successfully, but these errors were encountered: