conjure-up: How can I set juju bootstrap-series to bionic
up vote
0
down vote
favorite
I'm working to standup MAAS and OpenStack on Ubuntu 18.04. MAAS is installed and managing my hardware and I am now attempting to install OpenStack via conjure-up. When conjure-up calls juju bootstrap is is requesting the default series 'xenial' as specified in the juju.py file.
If I call juju from the command line it uses 'bionic'. I can't find any documentation on how to pass the bootstrap-series value to juju from conjure-up. Any ideas?
juju maas snap conjure-up
add a comment |
up vote
0
down vote
favorite
I'm working to standup MAAS and OpenStack on Ubuntu 18.04. MAAS is installed and managing my hardware and I am now attempting to install OpenStack via conjure-up. When conjure-up calls juju bootstrap is is requesting the default series 'xenial' as specified in the juju.py file.
If I call juju from the command line it uses 'bionic'. I can't find any documentation on how to pass the bootstrap-series value to juju from conjure-up. Any ideas?
juju maas snap conjure-up
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm working to standup MAAS and OpenStack on Ubuntu 18.04. MAAS is installed and managing my hardware and I am now attempting to install OpenStack via conjure-up. When conjure-up calls juju bootstrap is is requesting the default series 'xenial' as specified in the juju.py file.
If I call juju from the command line it uses 'bionic'. I can't find any documentation on how to pass the bootstrap-series value to juju from conjure-up. Any ideas?
juju maas snap conjure-up
I'm working to standup MAAS and OpenStack on Ubuntu 18.04. MAAS is installed and managing my hardware and I am now attempting to install OpenStack via conjure-up. When conjure-up calls juju bootstrap is is requesting the default series 'xenial' as specified in the juju.py file.
If I call juju from the command line it uses 'bionic'. I can't find any documentation on how to pass the bootstrap-series value to juju from conjure-up. Any ideas?
juju maas snap conjure-up
juju maas snap conjure-up
edited Oct 25 at 8:48
NIMISHAN
84321119
84321119
asked Oct 25 at 5:59
pharper
11
11
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
I know if you delete the image from the the MAAS controller it will install 18.04. I haven't have any luck trying to get 18.04 + working on nodes, it always picked 16.04 when it sorta works.
add a comment |
up vote
0
down vote
You have more control of what series you would like to deploy (controller only):
$ juju bootstrap --help | grep series
--bootstrap-series (= "")
Specify the series of the bootstrap machine
$ juju bootstrap --bootstrap-series=xenial
Clouds
aws
aws-china
aws-gov
azure
azure-china
cloudsigma
google
joyent
localhost
oracle
rackspace
Select a cloud [localhost]: hit enter here for localhost as default choice
Enter a name for the Controller [localhost-localhost]: test1
Creating Juju controller "test1" on localhost/localhost
Looking for packaged Juju agent version 2.4.6 for amd64
To configure your system to better support LXD containers, please see: https://github.com/lxc/lxd/blob/master/doc/production-setup.md
Launching controller instance(s) on localhost/localhost...
- juju-324cd0-0 (arch=amd64)
Installing Juju agent on bootstrap instance
Fetching Juju GUI 2.14.0
Waiting for address
Attempting to connect to 10.102.181.77:22
Connected to 10.102.181.77
Running machine configuration script...
Bootstrap agent now started
Contacting Juju controller at 10.102.181.77 to verify accessibility...
Bootstrap complete, "test1" controller now available
Controller machines are in the "controller" model
Initial model "default" added
$
$ juju machines -m controller
Machine State DNS Inst id Series AZ Message
0 started 10.102.181.77 juju-324cd0-0 xenial Running
Above creates a controller with xenial. To create one with bionic run:
$ juju bootstrap --bootstrap-series=bionic
2) start conjure-up, select software to deploy and then you will be asked if you want to create new controller or use existing one. Select the controller created in step 1 and continue.
You could also bootstrap controller manually to lxd
https://docs.jujucharms.com/2.4/en/clouds-LXD
and when it launches by default as you mentioned it would be bionic. Quick and easy.
Hope it will help.
Thanks
B
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1087006%2fconjure-up-how-can-i-set-juju-bootstrap-series-to-bionic%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I know if you delete the image from the the MAAS controller it will install 18.04. I haven't have any luck trying to get 18.04 + working on nodes, it always picked 16.04 when it sorta works.
add a comment |
up vote
0
down vote
I know if you delete the image from the the MAAS controller it will install 18.04. I haven't have any luck trying to get 18.04 + working on nodes, it always picked 16.04 when it sorta works.
add a comment |
up vote
0
down vote
up vote
0
down vote
I know if you delete the image from the the MAAS controller it will install 18.04. I haven't have any luck trying to get 18.04 + working on nodes, it always picked 16.04 when it sorta works.
I know if you delete the image from the the MAAS controller it will install 18.04. I haven't have any luck trying to get 18.04 + working on nodes, it always picked 16.04 when it sorta works.
answered Oct 26 at 14:05
beef
1
1
add a comment |
add a comment |
up vote
0
down vote
You have more control of what series you would like to deploy (controller only):
$ juju bootstrap --help | grep series
--bootstrap-series (= "")
Specify the series of the bootstrap machine
$ juju bootstrap --bootstrap-series=xenial
Clouds
aws
aws-china
aws-gov
azure
azure-china
cloudsigma
google
joyent
localhost
oracle
rackspace
Select a cloud [localhost]: hit enter here for localhost as default choice
Enter a name for the Controller [localhost-localhost]: test1
Creating Juju controller "test1" on localhost/localhost
Looking for packaged Juju agent version 2.4.6 for amd64
To configure your system to better support LXD containers, please see: https://github.com/lxc/lxd/blob/master/doc/production-setup.md
Launching controller instance(s) on localhost/localhost...
- juju-324cd0-0 (arch=amd64)
Installing Juju agent on bootstrap instance
Fetching Juju GUI 2.14.0
Waiting for address
Attempting to connect to 10.102.181.77:22
Connected to 10.102.181.77
Running machine configuration script...
Bootstrap agent now started
Contacting Juju controller at 10.102.181.77 to verify accessibility...
Bootstrap complete, "test1" controller now available
Controller machines are in the "controller" model
Initial model "default" added
$
$ juju machines -m controller
Machine State DNS Inst id Series AZ Message
0 started 10.102.181.77 juju-324cd0-0 xenial Running
Above creates a controller with xenial. To create one with bionic run:
$ juju bootstrap --bootstrap-series=bionic
2) start conjure-up, select software to deploy and then you will be asked if you want to create new controller or use existing one. Select the controller created in step 1 and continue.
You could also bootstrap controller manually to lxd
https://docs.jujucharms.com/2.4/en/clouds-LXD
and when it launches by default as you mentioned it would be bionic. Quick and easy.
Hope it will help.
Thanks
B
add a comment |
up vote
0
down vote
You have more control of what series you would like to deploy (controller only):
$ juju bootstrap --help | grep series
--bootstrap-series (= "")
Specify the series of the bootstrap machine
$ juju bootstrap --bootstrap-series=xenial
Clouds
aws
aws-china
aws-gov
azure
azure-china
cloudsigma
google
joyent
localhost
oracle
rackspace
Select a cloud [localhost]: hit enter here for localhost as default choice
Enter a name for the Controller [localhost-localhost]: test1
Creating Juju controller "test1" on localhost/localhost
Looking for packaged Juju agent version 2.4.6 for amd64
To configure your system to better support LXD containers, please see: https://github.com/lxc/lxd/blob/master/doc/production-setup.md
Launching controller instance(s) on localhost/localhost...
- juju-324cd0-0 (arch=amd64)
Installing Juju agent on bootstrap instance
Fetching Juju GUI 2.14.0
Waiting for address
Attempting to connect to 10.102.181.77:22
Connected to 10.102.181.77
Running machine configuration script...
Bootstrap agent now started
Contacting Juju controller at 10.102.181.77 to verify accessibility...
Bootstrap complete, "test1" controller now available
Controller machines are in the "controller" model
Initial model "default" added
$
$ juju machines -m controller
Machine State DNS Inst id Series AZ Message
0 started 10.102.181.77 juju-324cd0-0 xenial Running
Above creates a controller with xenial. To create one with bionic run:
$ juju bootstrap --bootstrap-series=bionic
2) start conjure-up, select software to deploy and then you will be asked if you want to create new controller or use existing one. Select the controller created in step 1 and continue.
You could also bootstrap controller manually to lxd
https://docs.jujucharms.com/2.4/en/clouds-LXD
and when it launches by default as you mentioned it would be bionic. Quick and easy.
Hope it will help.
Thanks
B
add a comment |
up vote
0
down vote
up vote
0
down vote
You have more control of what series you would like to deploy (controller only):
$ juju bootstrap --help | grep series
--bootstrap-series (= "")
Specify the series of the bootstrap machine
$ juju bootstrap --bootstrap-series=xenial
Clouds
aws
aws-china
aws-gov
azure
azure-china
cloudsigma
google
joyent
localhost
oracle
rackspace
Select a cloud [localhost]: hit enter here for localhost as default choice
Enter a name for the Controller [localhost-localhost]: test1
Creating Juju controller "test1" on localhost/localhost
Looking for packaged Juju agent version 2.4.6 for amd64
To configure your system to better support LXD containers, please see: https://github.com/lxc/lxd/blob/master/doc/production-setup.md
Launching controller instance(s) on localhost/localhost...
- juju-324cd0-0 (arch=amd64)
Installing Juju agent on bootstrap instance
Fetching Juju GUI 2.14.0
Waiting for address
Attempting to connect to 10.102.181.77:22
Connected to 10.102.181.77
Running machine configuration script...
Bootstrap agent now started
Contacting Juju controller at 10.102.181.77 to verify accessibility...
Bootstrap complete, "test1" controller now available
Controller machines are in the "controller" model
Initial model "default" added
$
$ juju machines -m controller
Machine State DNS Inst id Series AZ Message
0 started 10.102.181.77 juju-324cd0-0 xenial Running
Above creates a controller with xenial. To create one with bionic run:
$ juju bootstrap --bootstrap-series=bionic
2) start conjure-up, select software to deploy and then you will be asked if you want to create new controller or use existing one. Select the controller created in step 1 and continue.
You could also bootstrap controller manually to lxd
https://docs.jujucharms.com/2.4/en/clouds-LXD
and when it launches by default as you mentioned it would be bionic. Quick and easy.
Hope it will help.
Thanks
B
You have more control of what series you would like to deploy (controller only):
$ juju bootstrap --help | grep series
--bootstrap-series (= "")
Specify the series of the bootstrap machine
$ juju bootstrap --bootstrap-series=xenial
Clouds
aws
aws-china
aws-gov
azure
azure-china
cloudsigma
google
joyent
localhost
oracle
rackspace
Select a cloud [localhost]: hit enter here for localhost as default choice
Enter a name for the Controller [localhost-localhost]: test1
Creating Juju controller "test1" on localhost/localhost
Looking for packaged Juju agent version 2.4.6 for amd64
To configure your system to better support LXD containers, please see: https://github.com/lxc/lxd/blob/master/doc/production-setup.md
Launching controller instance(s) on localhost/localhost...
- juju-324cd0-0 (arch=amd64)
Installing Juju agent on bootstrap instance
Fetching Juju GUI 2.14.0
Waiting for address
Attempting to connect to 10.102.181.77:22
Connected to 10.102.181.77
Running machine configuration script...
Bootstrap agent now started
Contacting Juju controller at 10.102.181.77 to verify accessibility...
Bootstrap complete, "test1" controller now available
Controller machines are in the "controller" model
Initial model "default" added
$
$ juju machines -m controller
Machine State DNS Inst id Series AZ Message
0 started 10.102.181.77 juju-324cd0-0 xenial Running
Above creates a controller with xenial. To create one with bionic run:
$ juju bootstrap --bootstrap-series=bionic
2) start conjure-up, select software to deploy and then you will be asked if you want to create new controller or use existing one. Select the controller created in step 1 and continue.
You could also bootstrap controller manually to lxd
https://docs.jujucharms.com/2.4/en/clouds-LXD
and when it launches by default as you mentioned it would be bionic. Quick and easy.
Hope it will help.
Thanks
B
answered Nov 27 at 20:46
bogdan
133112
133112
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1087006%2fconjure-up-how-can-i-set-juju-bootstrap-series-to-bionic%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown