Skip to content

Commit

Permalink
Change node version (as per new GH rules)
Browse files Browse the repository at this point in the history
Signed-off-by: Aadhitya A <[email protected]>
  • Loading branch information
alphaX86 committed Jan 10, 2023
1 parent d47293c commit eeafc91
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ inputs:
required: false

runs:
using: "node12"
using: "node16"
main: "main.js"

branding:
Expand Down
16 changes: 9 additions & 7 deletions mesheryctl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ main() {
docker network connect bridge meshery_meshery_1
docker network connect minikube meshery_meshery_1
mesheryctl system config minikube -t ~/auth.json

else
echo "Service mesh not found from profile. Invalid profile name has been provided"
exit 1
fi
#rand_string=$(openssl rand -hex 3)
#perf_profile_name="$rand_string-$perf_profile_name"
Expand All @@ -53,13 +57,11 @@ main() {

else
echo "Executing from given test config file..."
for service_mesh in ${!adapters[@]}
do
shortName=$(echo ${adapters[$service_mesh]} | cut -d ':' -f1)
shortName=${shortName#meshery-} #remove the prefix "meshery-"
docker network connect bridge meshery_meshery-"$shortName"_1
docker network connect minikube meshery_meshery-"$shortName"_1
done
#echo $service_mesh
shortName=$(echo ${adapters[$service_mesh]} | cut -d ':' -f1)
shortName=${shortName#meshery-} #remove the prefix "meshery-"
docker network connect bridge meshery_meshery-"$shortName"_1
docker network connect minikube meshery_meshery-"$shortName"_1

docker network connect bridge meshery_meshery_1
docker network connect minikube meshery_meshery_1
Expand Down

0 comments on commit eeafc91

Please sign in to comment.