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

Unified Diff: provider/dummy/environs.go

Issue 91740043: Support placement directives on bootstrap
Patch Set: Support placement directives on bootstrap Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « provider/common/mock_test.go ('k') | provider/ec2/ec2.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: provider/dummy/environs.go
=== modified file 'provider/dummy/environs.go'
--- provider/dummy/environs.go 2014-04-22 09:23:39 +0000
+++ provider/dummy/environs.go 2014-04-24 02:27:38 +0000
@@ -98,9 +98,9 @@
type Operation interface{}
type OpBootstrap struct {
- Context environs.BootstrapContext
- Env string
- Constraints constraints.Value
+ Context environs.BootstrapContext
+ Env string
+ Args environs.BootstrapParams
}
type OpDestroy struct {
@@ -562,8 +562,8 @@
storage.NewStorageSimpleStreamsDataSource("cloud storage", e.Storage(), storage.BaseToolsPath)}, nil
}
-func (e *environ) Bootstrap(ctx environs.BootstrapContext, cons constraints.Value) error {
- selectedTools, err := common.EnsureBootstrapTools(ctx, e, config.PreferredSeries(e.Config()), cons.Arch)
+func (e *environ) Bootstrap(ctx environs.BootstrapContext, args environs.BootstrapParams) error {
+ selectedTools, err := common.EnsureBootstrapTools(ctx, e, config.PreferredSeries(e.Config()), args.Constraints.Arch)
if err != nil {
return err
}
@@ -615,7 +615,7 @@
if err != nil {
panic(err)
}
- if err := st.SetEnvironConstraints(cons); err != nil {
+ if err := st.SetEnvironConstraints(args.Constraints); err != nil {
panic(err)
}
if err := st.SetAdminMongoPassword(utils.UserPasswordHash(password, utils.CompatSalt)); err != nil {
@@ -632,7 +632,7 @@
estate.apiState = st
}
estate.bootstrapped = true
- estate.ops <- OpBootstrap{Context: ctx, Env: e.name, Constraints: cons}
+ estate.ops <- OpBootstrap{Context: ctx, Env: e.name, Args: args}
return nil
}
« no previous file with comments | « provider/common/mock_test.go ('k') | provider/ec2/ec2.go » ('j') | no next file with comments »

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