lxc: Fixed target-release issue precise/maas
Mitigates issue lp:1289316
https://code.launchpad.net/~wwitzel3/juju-core/lp-1289316-lxc-maas-precise/+merge/209974
(do not edit description out of merge proposal)
https://codereview.appspot.com/72270044/diff/1/cloudinit/options.go File cloudinit/options.go (right): https://codereview.appspot.com/72270044/diff/1/cloudinit/options.go#newcode110 cloudinit/options.go:110: // argument. If targetRelease is an empty string, no ...
https://codereview.appspot.com/72270044/diff/120001/container/lxc/initialisat...
File container/lxc/initialisation.go (right):
https://codereview.appspot.com/72270044/diff/120001/container/lxc/initialisat...
container/lxc/initialisation.go:35: func targetReleasePackages(targetRelease
string) []string {
On 2014/03/12 18:46:39, wwitzel3 wrote:
> After talking with rogpeppe we will add an ltsPackages slice. This will
contain
> the packages that will require a --target-release and we will merge that with
> the requiredPackages slice.
>
> In the case of an empty string for targetRelease we will just append them
> together and not provide a --target-release
Done.
This is mostly great, but we should really not ignore errors.
For the record, acronyms in identifiers should be either
fully capitalised, or not capitalised at all.
So ltsFoo or fooLTS, but not fooLts.
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
File container/lxc/initialisation.go (right):
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
container/lxc/initialisation.go:13: // during AptGetInstall
// ltsPackages holds any required packages that may
// install with a different version from their default.
// The installed versions of these packages will be selected
// with targetRelease argument to NewContainerInitialiser.
//
// Specifically, ltsPackages should
// include any required packages from the cloud archive.
?
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
container/lxc/initialisation.go:18: var requiredPackages = []string{}
// requiredPackages holds any required packages that
// will always install with their default version.
?
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
container/lxc/initialisation.go:35: return
ensureDependencies((*ci).targetRelease)
ci.targetRelease
(the indirection is automatic)
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
container/lxc/initialisation.go:41: packages := []string{
How about putting all the targetRelease-specific logic in here?
func installLTSPackages(targetRelease string) error {
var args []string
if targetRelease != "" {
args = append(args, "--target-release", targetRelease)
}
args = append(args, ltsPackages...)
return utils.AptGetInstall(args...)
}
Then the logic in ensureDependencies can be much simpler:
func ensureDependencies(targetRelease string) error {
if err := installLTSPackages(targetRelease); err != nil {
return err
}
return utils.AptGetInstall(requiredPackages)
}
it's potentially slightly more inefficient, but do we actually care?
https://codereview.appspot.com/72270044/diff/160001/state/api/provisioner/mac...
File state/api/provisioner/machine.go (right):
https://codereview.appspot.com/72270044/diff/160001/state/api/provisioner/mac...
state/api/provisioner/machine.go:172: series, _ := m.Series()
We should not ignore the error here - it may represent a connection
failure. That means we should return an error from TargetRelease too.
https://codereview.appspot.com/72270044/diff/160001/state/api/provisioner/mac...
state/api/provisioner/machine.go:175: targetRelease =
"precise-updates/cloud-tools"
Or lose the targetRelease variable:
switch series {
case "precise"
return "precise-updates/cloud-tools"
}
return ""
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
File container/lxc/initialisation.go (right):
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
container/lxc/initialisation.go:13: // during AptGetInstall
On 2014/03/13 12:17:52, rog wrote:
> // ltsPackages holds any required packages that may
> // install with a different version from their default.
> // The installed versions of these packages will be selected
> // with targetRelease argument to NewContainerInitialiser.
> //
> // Specifically, ltsPackages should
> // include any required packages from the cloud archive.
>
> ?
Done.
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
container/lxc/initialisation.go:18: var requiredPackages = []string{}
On 2014/03/13 12:17:52, rog wrote:
> // requiredPackages holds any required packages that
> // will always install with their default version.
>
> ?
Done.
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
container/lxc/initialisation.go:35: return
ensureDependencies((*ci).targetRelease)
On 2014/03/13 12:17:52, rog wrote:
> ci.targetRelease
>
> (the indirection is automatic)
Done.
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
container/lxc/initialisation.go:41: packages := []string{
On 2014/03/13 12:17:52, rog wrote:
> How about putting all the targetRelease-specific logic in here?
>
> func installLTSPackages(targetRelease string) error {
> var args []string
> if targetRelease != "" {
> args = append(args, "--target-release", targetRelease)
> }
> args = append(args, ltsPackages...)
> return utils.AptGetInstall(args...)
> }
>
>
> Then the logic in ensureDependencies can be much simpler:
>
> func ensureDependencies(targetRelease string) error {
> if err := installLTSPackages(targetRelease); err != nil {
> return err
> }
> return utils.AptGetInstall(requiredPackages)
> }
>
>
> it's potentially slightly more inefficient, but do we actually care?
I like that, it was a carry over from the old version where that method returned
a string of packages to be appended. Now that it is actually calling
AptGetInstall, moving all of that logic there makes sense.
https://codereview.appspot.com/72270044/diff/160001/container/lxc/initialisat...
container/lxc/initialisation.go:41: packages := []string{
On 2014/03/13 12:17:52, rog wrote:
> How about putting all the targetRelease-specific logic in here?
>
> func installLTSPackages(targetRelease string) error {
> var args []string
> if targetRelease != "" {
> args = append(args, "--target-release", targetRelease)
> }
> args = append(args, ltsPackages...)
> return utils.AptGetInstall(args...)
> }
>
>
> Then the logic in ensureDependencies can be much simpler:
>
> func ensureDependencies(targetRelease string) error {
> if err := installLTSPackages(targetRelease); err != nil {
> return err
> }
> return utils.AptGetInstall(requiredPackages)
> }
>
>
> it's potentially slightly more inefficient, but do we actually care?
Done.
https://codereview.appspot.com/72270044/diff/160001/state/api/provisioner/mac...
File state/api/provisioner/machine.go (right):
https://codereview.appspot.com/72270044/diff/160001/state/api/provisioner/mac...
state/api/provisioner/machine.go:172: series, _ := m.Series()
On 2014/03/13 12:17:52, rog wrote:
> We should not ignore the error here - it may represent a connection
> failure. That means we should return an error from TargetRelease too.
Done.
LGTM with just one tiny nitpick https://codereview.appspot.com/72270044/diff/220001/utils/apt.go File utils/apt.go (right): https://codereview.appspot.com/72270044/diff/220001/utils/apt.go#newcode92 utils/apt.go:92: if target := ...
Issue 72270044: lxc: Fixed target-release issue precise/maas
Created 11 years, 1 month ago by wwitzel
Modified 11 years ago
Reviewers: mp+209974_code.launchpad.net, dimitern, wwitzel3, rog, gz, natefinch
Base URL:
Comments: 30