Deploy deploys both the satellite and node configurations
()
| 103 | |
| 104 | // Deploy deploys both the satellite and node configurations |
| 105 | func (d *Deployer) Deploy() error { |
| 106 | err := d.DeploySatelliteConfig() |
| 107 | if err != nil { |
| 108 | return err |
| 109 | } |
| 110 | |
| 111 | err = d.DeployNodeConfig() |
| 112 | if err != nil { |
| 113 | return err |
| 114 | } |
| 115 | |
| 116 | return nil |
| 117 | } |