We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If installing the metallb plugin by setting it to "true", the install process hangs there and there is no diagnostic output.
The only way I found the issue is by changing tasks/addons.yml
cmd: microk8s.enable {{ item.name }}{% if microk8s_plugins[item.name] != True %}:{{ microk8s_plugins[item.name] }}{% endif %}
To...
cmd: microk8s.enable {{ item.name }} && exit{% if microk8s_plugins[item.name] != True %}:{{ microk8s_plugins[item.name] }}{% endif %}
The main issue is in defaults/main.yml, the metallb line looks like...
metallb: false
So I just set to to "true". It probably should look something like the dns addon line to make plain that arguments are required.
The text was updated successfully, but these errors were encountered:
I have encountered with this one too. I suspect it is waiting for the IP ranges.
Can the option to define these be added to the defaults...?
Sorry, something went wrong.
Metallb can be used by providing an ip range as string instead of true
e.g.:
- role: 'istvano.microk8s' vars: microk8s_plugins: metallb: "xxx.xxx.x.x-xxx.xxx.x.x"
No branches or pull requests
If installing the metallb plugin by setting it to "true", the install process hangs there and there is no diagnostic output.
The only way I found the issue is by changing tasks/addons.yml
cmd: microk8s.enable {{ item.name }}{% if microk8s_plugins[item.name] != True %}:{{ microk8s_plugins[item.name] }}{% endif %}
To...
cmd: microk8s.enable {{ item.name }} && exit{% if microk8s_plugins[item.name] != True %}:{{ microk8s_plugins[item.name] }}{% endif %}
The main issue is in defaults/main.yml, the metallb line looks like...
metallb: false
So I just set to to "true". It probably should look something like the dns addon line to make plain that arguments are required.
The text was updated successfully, but these errors were encountered: