-
Notifications
You must be signed in to change notification settings - Fork 33
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
Orchestration in VDMS with Kubernetes #261
base: develop
Are you sure you want to change the base?
Conversation
Target CPP Coverage: 64.1421% Target Python Coverage: 98.02% |
Target CPP Coverage: 64.1421% Target Python Coverage: 98.02% |
Target CPP Coverage: 64.1421% Target Python Coverage: 97.94% |
Target CPP Coverage: 64.1323% Target Python Coverage: 97.94% |
…into kubernetes_support
Target CPP Coverage: 64.2822% Target Python Coverage: 97.94% |
…into kubernetes_support
Target CPP Coverage: 64.2822% Target Python Coverage: 97.94% |
Target CPP Coverage: 64.2822% Target Python Coverage: 97.94% |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nothing was leaping out, but I do have some concerns at the level of complexity of the utilities we're bolting on, and think we might want to have a discussion at some point of teasing apart some of the pieces into more isolated libraries/calls (e.g. VCL, K8s support, etc).
That said, approved.
{ | ||
echo "" | ||
echo "Usage: $0 -m machinetype -i install -s setup_the_node -k k8s_setup -c clear_the_node -j local_kubeConfig" | ||
echo "\t-m Input the machine type either 'remote' or 'master'" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor nit: we try to avoid using term "master" these days. "primary" is a good alternative.
sudo docker tag remote-udf-1 localhost:5000/remote-udf-1 | ||
sudo docker push localhost:5000/remote-udf-1 | ||
} | ||
remoteInstallFunction() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont think there's a lot we can do in the short term, but I'm concerned about the number of hard coded paths and URLs I'm seeing. This script may be difficult to maintain in the long term given our relatively limited development resources.
Closes #246