Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(577)

Issue 13481043: Introduce the format 1.16 for agent confg.

Can't Edit
Can't Publish+Mail
Start Review
Created:
11 years, 7 months ago by thumper
Modified:
11 years, 6 months ago
Reviewers:
mp+183558, fwereade, rog
Visibility:
Public.

Description

Introduce the format 1.16 for agent confg. With adding the new format, a migrate method was added to the formatter interface to provide a defined place to do additional upgrade data munging as needed. When an old format config is read, it is immediately migrated and written out using the current format. The new format allows storing of key/value pairs. These are now used instead of OS environment variables for passing on the provider type, lxc bridge, and local storage information. Cloudinit no longer writes upstart scripts with extra environment variables for the machine agents, but instead writes the extra variables to the agent config. Due to this change, the MachineEnvironment param was changed to AgentEnvironment. Also the StatePort was never read, so it has been removed from information that is saved. The cloudinit tests were modified to be agnostic to the actual format of the agent.conf files. Previous review found here: https://codereview.appspot.com/13421043/ https://code.launchpad.net/~thumper/juju-core/new-agent-format/+merge/183558 Requires: https://code.launchpad.net/~thumper/juju-core/pass-through-agent-config/+merge/183543 (do not edit description out of merge proposal)

Patch Set 1 #

Total comments: 6

Patch Set 2 : Introduce the format 1.16 for agent confg. #

Total comments: 14
Unified diffs Side-by-side diffs Delta from patch set Stats (+780 lines, -175 lines) Patch
A [revision details] View 1 1 chunk +2 lines, -0 lines 0 comments Download
M agent/agent.go View 1 12 chunks +89 lines, -8 lines 4 comments Download
M agent/format.go View 3 chunks +52 lines, -3 lines 2 comments Download
M agent/format-1.12.go View 3 chunks +4 lines, -2 lines 0 comments Download
M agent/format-1.12_whitebox_test.go View 1 chunk +0 lines, -9 lines 0 comments Download
A agent/format-1.16.go View 1 1 chunk +205 lines, -0 lines 4 comments Download
A agent/format-1.16_whitebox_test.go View 1 chunk +143 lines, -0 lines 0 comments Download
M agent/format_whitebox_test.go View 3 chunks +75 lines, -2 lines 0 comments Download
M cmd/jujud/machine.go View 5 chunks +7 lines, -7 lines 0 comments Download
M container/lxc/lxc.go View 2 chunks +0 lines, -4 lines 0 comments Download
M environs/cloudinit.go View 2 chunks +5 lines, -4 lines 0 comments Download
M environs/cloudinit/cloudinit.go View 1 3 chunks +5 lines, -4 lines 0 comments Download
M environs/cloudinit/cloudinit_test.go View 1 10 chunks +46 lines, -34 lines 0 comments Download
M environs/cloudinit_test.go View 3 chunks +14 lines, -11 lines 0 comments Download
M environs/manual/agent.go View 1 2 chunks +2 lines, -2 lines 0 comments Download
M juju/osenv/vars.go View 1 1 chunk +8 lines, -10 lines 0 comments Download
M juju/testing/conn.go View 1 2 chunks +16 lines, -0 lines 0 comments Download
M provider/local/environ.go View 1 3 chunks +10 lines, -7 lines 0 comments Download
M provider/local/storage/worker.go View 3 chunks +9 lines, -10 lines 0 comments Download
M provider/maas/environ.go View 2 chunks +2 lines, -2 lines 0 comments Download
M worker/deployer/simple.go View 3 chunks +9 lines, -3 lines 0 comments Download
M worker/deployer/simple_test.go View 1 chunk +4 lines, -0 lines 0 comments Download
M worker/provisioner/lxc-broker.go View 3 chunks +11 lines, -11 lines 0 comments Download
M worker/provisioner/lxc-broker_test.go View 7 chunks +25 lines, -9 lines 0 comments Download
M worker/provisioner/provisioner.go View 4 chunks +17 lines, -15 lines 4 comments Download
M worker/provisioner/provisioner_test.go View 13 chunks +20 lines, -18 lines 0 comments Download

Messages

Total messages: 7
thumper
Please take a look.
11 years, 7 months ago (2013-09-03 02:14:59 UTC) #1
fwereade
ISTM that Configs are passed around a bit casually, and certainly not goroutine-safely, and that ...
11 years, 7 months ago (2013-09-05 07:05:53 UTC) #2
thumper
Please take a look. https://codereview.appspot.com/13481043/diff/1/agent/agent.go File agent/agent.go (right): https://codereview.appspot.com/13481043/diff/1/agent/agent.go#newcode85 agent/agent.go:85: // Set the value for ...
11 years, 6 months ago (2013-09-12 02:21:06 UTC) #3
fwereade
On 2013/09/12 02:21:06, thumper wrote: > Please take a look. > > https://codereview.appspot.com/13481043/diff/1/agent/agent.go > File ...
11 years, 6 months ago (2013-09-12 10:49:27 UTC) #4
fwereade
LGTM; comments but no blockers. https://codereview.appspot.com/13481043/diff/6001/agent/agent.go File agent/agent.go (right): https://codereview.appspot.com/13481043/diff/6001/agent/agent.go#newcode103 agent/agent.go:103: // when mutliple go-routines ...
11 years, 6 months ago (2013-09-12 13:21:44 UTC) #5
rog
A couple of suggestions based on a very quick skim. https://codereview.appspot.com/13481043/diff/6001/agent/format-1.16.go File agent/format-1.16.go (right): https://codereview.appspot.com/13481043/diff/6001/agent/format-1.16.go#newcode119 ...
11 years, 6 months ago (2013-09-12 14:50:58 UTC) #6
thumper
11 years, 6 months ago (2013-09-12 22:52:15 UTC) #7
https://codereview.appspot.com/13481043/diff/6001/agent/agent.go
File agent/agent.go (right):

https://codereview.appspot.com/13481043/diff/6001/agent/agent.go#newcode103
agent/agent.go:103: // when mutliple go-routines may be adding things to the
agent config, and
On 2013/09/12 13:21:44, fwereade wrote:
> mutliple

Done.

https://codereview.appspot.com/13481043/diff/6001/agent/agent.go#newcode111
agent/agent.go:111: // map.  Retrieving and setting values here are protected by
the mutex.
On 2013/09/12 13:21:44, fwereade wrote:
> To get the read/write thing right across the board, I think we have to go with
a
> model whereby you tell the config to persist by passing in a mutate func...
but
> even then, I remain nervous about the N cached copies of mutually diverging
> state.
> 
> I'm starting to get the impression that this is maybe a case for the Forbidden
> Design Pattern... but I can also appreciate that what we have here is progress
> even if it's not perfection. Would you just rewrite the comment above to make
> the limits of the current model clear and explicit?

I'm not sure I agree here.  The agent configuration is defined at creation time,
and the only mutable values are in the values map.  Synchronisation around these
and the write methods are sufficient.  Clearly if we are adding other mutating
functions to the interface, these should also be protected.  We don't have N
cached copies mutually diverging.  We have one instance used in multiple places.

I'll add a bit more to the comment here, but I'm not clear on where you feel the
issue is.

https://codereview.appspot.com/13481043/diff/6001/agent/format-1.16.go
File agent/format-1.16.go (right):

https://codereview.appspot.com/13481043/diff/6001/agent/format-1.16.go#newcod...
agent/format-1.16.go:119: CACert:         
base64.StdEncoding.EncodeToString(config.caCert),
On 2013/09/12 14:50:58, rog wrote:
> can't we just use string here and below?
> the certificates and keys are defined to be in PEM format (it is, or was at
> least, even documented in this packages as such), which is ASCII
> (and mostly base64 itself).

This was done to just take the []byte safely into a string.

If it was a string before, why are we passing it around as a byte slice?

We can always change future formats to do this if we decide we want to change.

https://codereview.appspot.com/13481043/diff/6001/agent/format-1.16.go#newcod...
agent/format-1.16.go:147: // directory to ".old".
On 2013/09/12 13:21:44, fwereade wrote:
> I agree that we should; or possibly that we should be atomically swapping a
> symlink. That's surely out of scope, because of backward compatibility if
> nothing else, but it deserves its own bug.

Agree that it is out of scope for this branch, filed a bug and linked it.

https://codereview.appspot.com/13481043/diff/6001/agent/format.go
File agent/format.go (right):

https://codereview.appspot.com/13481043/diff/6001/agent/format.go#newcode33
agent/format.go:33: formatFilename = "format"
On 2013/09/12 14:50:58, rog wrote:
> Why do we need the file format to be in a separate file?
> Can't we just store the format inside the file itself
> (some care would obviously need to be taken when first introducing
> the format specifier, and that the file format is sufficiently
> general to cater for different formats).
> 
> Then we don't need to worry about the config file getting
> out of step with its purported format.
> 
> Something like:
> 
> type agentConfig struct {
>     Format string
>     Contents string
> }
> 
> should do the job (it's a pity that goyaml doesn't have the equivalent of
> json.RawMessage).

Here we are taking advantage of the knowledge gained in other projects.  This is
what bazaar did, and it worked very well for them.

This also keeps the concepts clean.  Also, William is actually wanting to break
the config apart into more files, not consolidate them.

https://codereview.appspot.com/13481043/diff/6001/worker/provisioner/provisio...
File worker/provisioner/provisioner.go (right):

https://codereview.appspot.com/13481043/diff/6001/worker/provisioner/provisio...
worker/provisioner/provisioner.go:71: agentConfig: agentConfig,
On 2013/09/12 13:21:44, fwereade wrote:
> I feel like we ought to be able to get the id (tag better perhaps?) out of the
> agent config.

We can get the Tag, and then use that to get the machine id.

Perhaps as a trivial follow-up branch.

https://codereview.appspot.com/13481043/diff/6001/worker/provisioner/provisio...
worker/provisioner/provisioner.go:177: tools, err :=
agenttools.ReadTools(dataDir, version.Current)
On 2013/09/12 13:21:44, fwereade wrote:
> I feel like most of agenttools should really be methods on agentConfig. YMMV,
> not one for this CL, etc.

Perhaps, and I agree not for this CL.
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b