(userData string)
| 16 | } |
| 17 | |
| 18 | func decode(userData string) *cloudconfig.CloudConfig { |
| 19 | cloudCfg, err := cloudconfig.DecodeCloudConfig(userData) |
| 20 | Expect(err).NotTo(HaveOccurred()) |
| 21 | |
| 22 | return cloudCfg |
| 23 | } |
| 24 | |
| 25 | func newBootstrapper(clusterConfig *api.ClusterConfig, ng *api.NodeGroup) nodebootstrap.Bootstrapper { |
| 26 | bootstrapper, err := nodebootstrap.NewBootstrapper(clusterConfig, ng) |
no test coverage detected