From bsutter at redhat.com Tue Oct 31 02:36:52 2017 From: bsutter at redhat.com (Burr Sutter) Date: Mon, 30 Oct 2017 22:36:52 -0400 Subject: [Devtools] minishift addon and profile Message-ID: ok, I still can not tease out how to use an add-on and profile simultaneously. I want ./minishift addon admin-user enable and ./minishift start --profile stuff I also want all these other settings MINISHIFT_ENABLE_EXPERIMENT=on ./minishift start --profile one --cpus 2 --memory 6G --vm-driver virtualbox --iso-url=centos --openshift-version v3.7.0-rc.0 so I can get to the container catalog but my admin user never comes to life. -------------- next part -------------- An HTML attachment was scrubbed... URL: From prkumar at redhat.com Tue Oct 31 03:21:38 2017 From: prkumar at redhat.com (Praveen Kumar) Date: Tue, 31 Oct 2017 08:51:38 +0530 Subject: [Devtools] minishift addon and profile In-Reply-To: References: Message-ID: On Tue, Oct 31, 2017 at 8:06 AM, Burr Sutter wrote: > ok, I still can not tease out how to use an add-on and profile > simultaneously. > > I want > ./minishift addon admin-user enable > and > ./minishift start --profile stuff > > I also want all these other settings > MINISHIFT_ENABLE_EXPERIMENT=on ./minishift start --profile one --cpus 2 > --memory 6G --vm-driver virtualbox --iso-url=centos --openshift-version > v3.7.0-rc.0 > You need below steps for setting addons with a profile. $ ./minishift addon admin-user enable --profile foo $ ./minishift start --profile foo or (if you need an experimental feature and different configuration around profile) $ MINISHIFT_ENABLE_EXPERIMENT=on ./minishift start --profile foo --cpus 2 --memory 6G --vm-driver virtualbox --iso-url=centos --openshift-version v3.7.0-rc.0 FYI, we are also working on better document around profile. > so I can get to the container catalog but my admin user never comes to life. > > > > > _______________________________________________ > Devtools mailing list > Devtools at redhat.com > https://www.redhat.com/mailman/listinfo/devtools > -- Praveen Kumar https://fedoraproject.org/wiki/User:Kumarpraveen From lmohanty at redhat.com Tue Oct 31 07:36:41 2017 From: lmohanty at redhat.com (Lalatendu Mohanty) Date: Tue, 31 Oct 2017 13:06:41 +0530 Subject: [Devtools] minishift addon and profile In-Reply-To: References: Message-ID: On Tue, Oct 31, 2017 at 8:51 AM, Praveen Kumar wrote: > On Tue, Oct 31, 2017 at 8:06 AM, Burr Sutter wrote: > > ok, I still can not tease out how to use an add-on and profile > > simultaneously. > > > > I want > > ./minishift addon admin-user enable > > and > > ./minishift start --profile stuff > > > > I also want all these other settings > > MINISHIFT_ENABLE_EXPERIMENT=on ./minishift start --profile one --cpus 2 > > --memory 6G --vm-driver virtualbox --iso-url=centos --openshift-version > > v3.7.0-rc.0 > > > > You need below steps for setting addons with a profile. > > $ ./minishift addon admin-user enable --profile foo > $ ./minishift start --profile foo > > or (if you need an experimental feature and different configuration > around profile) > > $ MINISHIFT_ENABLE_EXPERIMENT=on ./minishift start --profile foo > --cpus 2 --memory 6G --vm-driver virtualbox --iso-url=centos > --openshift-version v3.7.0-rc.0 > > FYI, we are also working on better document around profile. > Here is the documentation pull request [1] and here is a sample work flow as mentioned in the pull request To create a new profile *foo *with specific persistent configurations, run: $ minishift profile set foo $ minishift config set memory 6GB $ minishift config set cpus 2 $ minishift config set vm-driver virtualbox $ minishift addon enable admin-user $ minishift config set openshift-version v3.7.0-rc.0 $ minishift config set iso-url centos $ minishift start [1] https://github.com/minishift/minishift/pull/1605 Thanks, Lala > > > so I can get to the container catalog but my admin user never comes to > life. > > > > > > > > > > _______________________________________________ > > Devtools mailing list > > Devtools at redhat.com > > https://www.redhat.com/mailman/listinfo/devtools > > > > > > -- > Praveen Kumar > https://fedoraproject.org/wiki/User:Kumarpraveen > > _______________________________________________ > Devtools mailing list > Devtools at redhat.com > https://www.redhat.com/mailman/listinfo/devtools > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bsutter at redhat.com Tue Oct 31 19:00:50 2017 From: bsutter at redhat.com (Burr Sutter) Date: Tue, 31 Oct 2017 15:00:50 -0400 Subject: [Devtools] minishift addon and profile In-Reply-To: References: Message-ID: On Tue, Oct 31, 2017 at 3:36 AM, Lalatendu Mohanty wrote: > > > On Tue, Oct 31, 2017 at 8:51 AM, Praveen Kumar wrote: > >> On Tue, Oct 31, 2017 at 8:06 AM, Burr Sutter wrote: >> > ok, I still can not tease out how to use an add-on and profile >> > simultaneously. >> > >> > I want >> > ./minishift addon admin-user enable >> > and >> > ./minishift start --profile stuff >> > >> > I also want all these other settings >> > MINISHIFT_ENABLE_EXPERIMENT=on ./minishift start --profile one --cpus 2 >> > --memory 6G --vm-driver virtualbox --iso-url=centos --openshift-version >> > v3.7.0-rc.0 >> > >> >> You need below steps for setting addons with a profile. >> >> $ ./minishift addon admin-user enable --profile foo >> $ ./minishift start --profile foo >> >> or (if you need an experimental feature and different configuration >> around profile) >> >> $ MINISHIFT_ENABLE_EXPERIMENT=on ./minishift start --profile foo >> --cpus 2 --memory 6G --vm-driver virtualbox --iso-url=centos >> --openshift-version v3.7.0-rc.0 >> >> FYI, we are also working on better document around profile. >> > > > Here is the documentation pull request [1] and here is a sample work flow > as mentioned in the pull request > > To create a new profile *foo *with specific persistent configurations, > run: > > $ minishift profile set foo > $ minishift config set memory 6GB > $ minishift config set cpus 2 > $ minishift config set vm-driver virtualbox > $ minishift addon enable admin-user > $ minishift config set openshift-version v3.7.0-rc.0 > $ minishift config set iso-url centos > > $ minishift start > > I think that sorted me out, here is I what I used and feels like minishift is up and working well ./minishift profile set helloworldmsa ./minishift config set memory 6GB ./minishift config set cpus 2 ./minishift config set vm-driver virtualbox ./minishift addon enable admin-user ./minishift config set openshift-version v3.7.0-rc.0 ./minishift config set iso-url centos MINISHIFT_ENABLE_EXPERIMENT=on ./minishift start > > > [1] https://github.com/minishift/minishift/pull/1605 > > Thanks, > Lala > >> >> > so I can get to the container catalog but my admin user never comes to >> life. >> > >> > >> > >> > >> > _______________________________________________ >> > Devtools mailing list >> > Devtools at redhat.com >> > https://www.redhat.com/mailman/listinfo/devtools >> > >> >> >> >> -- >> Praveen Kumar >> https://fedoraproject.org/wiki/User:Kumarpraveen >> >> _______________________________________________ >> Devtools mailing list >> Devtools at redhat.com >> https://www.redhat.com/mailman/listinfo/devtools >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: