LEFT | RIGHT |
1 package environs | 1 package environs |
2 | 2 |
3 import ( | 3 import ( |
4 "errors" | 4 "errors" |
5 "io" | 5 "io" |
6 "launchpad.net/juju-core/environs/config" | 6 "launchpad.net/juju-core/environs/config" |
7 "launchpad.net/juju-core/state" | 7 "launchpad.net/juju-core/state" |
8 ) | 8 ) |
9 | 9 |
10 // A EnvironProvider represents a computing and storage provider. | 10 // A EnvironProvider represents a computing and storage provider. |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 // Bootstrap initializes the state for the environment, possibly | 124 // Bootstrap initializes the state for the environment, possibly |
125 // starting one or more instances. If uploadTools is true, the | 125 // starting one or more instances. If uploadTools is true, the |
126 // current version of the juju tools will be uploaded and used | 126 // current version of the juju tools will be uploaded and used |
127 // on the environment's instances. If the configuration's | 127 // on the environment's instances. If the configuration's |
128 // AdminSecret is non-empty, the adminstrator password on the | 128 // AdminSecret is non-empty, the adminstrator password on the |
129 // newly bootstrapped state will be set to a hash of it (see | 129 // newly bootstrapped state will be set to a hash of it (see |
130 // trivial.PasswordHash), When first connecting to the | 130 // trivial.PasswordHash), When first connecting to the |
131 // environment via the juju package, the password hash will be | 131 // environment via the juju package, the password hash will be |
132 // automatically replaced by the real password. | 132 // automatically replaced by the real password. |
133 // | 133 // |
134 » // The certificate to be used by the server and its private | 134 » // The stateServerPEM parameter holds both the private key and the |
135 » // key are specified in PEM format. | 135 » // respective certificate to be used by the initial state server. |
136 » Bootstrap(uploadTools bool, certAndKey []byte) error | 136 » Bootstrap(uploadTools bool, stateServerPEM []byte) error |
137 | 137 |
138 // StateInfo returns information on the state initialized | 138 // StateInfo returns information on the state initialized |
139 // by Bootstrap. | 139 // by Bootstrap. |
140 StateInfo() (*state.Info, error) | 140 StateInfo() (*state.Info, error) |
141 | 141 |
142 // Config returns the current configuration of this Environ. | 142 // Config returns the current configuration of this Environ. |
143 Config() *config.Config | 143 Config() *config.Config |
144 | 144 |
145 // SetConfig updates the Environs configuration. | 145 // SetConfig updates the Environs configuration. |
146 // Calls to SetConfig do not affect the configuration of | 146 // Calls to SetConfig do not affect the configuration of |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 ClosePorts(ports []state.Port) error | 204 ClosePorts(ports []state.Port) error |
205 | 205 |
206 // Ports returns the ports opened for the whole environment. | 206 // Ports returns the ports opened for the whole environment. |
207 // Must only be used if the environment was setup with the | 207 // Must only be used if the environment was setup with the |
208 // FwGlobal firewall mode. | 208 // FwGlobal firewall mode. |
209 Ports() ([]state.Port, error) | 209 Ports() ([]state.Port, error) |
210 | 210 |
211 // Provider returns the EnvironProvider that created this Environ. | 211 // Provider returns the EnvironProvider that created this Environ. |
212 Provider() EnvironProvider | 212 Provider() EnvironProvider |
213 } | 213 } |
LEFT | RIGHT |