-
Notifications
You must be signed in to change notification settings - Fork 39
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
[VVP-4769] Show installation token after Community Edition installation #99
base: master
Are you sure you want to change the base?
[VVP-4769] Show installation token after Community Edition installation #99
Conversation
bffdd4f
to
69940f9
Compare
setup.sh
Outdated
echo "> Waiting for Installation Token..." && sleep 1m; | ||
kubectl --namespace "$VVP_NAMESPACE" get secret installation-token --template={{.data.token}} && echo "" | ||
if [ $? -eq 0 ]; then | ||
echo "> To finish installation please register the token in https://www.ververica.com/getting-started" |
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.
Is this link valid?
echo "> Waiting for Installation Token..."; | ||
kubectl --namespace "$VVP_NAMESPACE" get secret installation-token --template={{.data.token}} | base64 -d && echo "" | ||
if [ $? -eq 0 ]; then | ||
echo "> Successfully installed 14 days trial. To receive full Community License please register the token in https://www.ververica.com" |
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.
under
if [ $? -eq 0 ]; then | ||
echo "> Successfully installed 14 days trial. To receive full Community License please register the token in https://www.ververica.com" | ||
else | ||
echo "> Token not find. Please reinstall Community Edition with defaults" |
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.
found
if [ $? -eq 0 ]; then | ||
echo "> Successfully installed 14 days trial. To receive full Community License please register the token in https://www.ververica.com" | ||
else | ||
echo "> Token not find. Please reinstall Community Edition with defaults" |
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.
maybe with default values will be better
No description provided.