(c *LocalCluster)
| 157 | } |
| 158 | |
| 159 | func (z *zero) mounts(c *LocalCluster) ([]mount.Mount, error) { |
| 160 | var mounts []mount.Mount |
| 161 | binMount, err := mountBinary(c) |
| 162 | if err != nil { |
| 163 | return nil, err |
| 164 | } |
| 165 | mounts = append(mounts, binMount) |
| 166 | return mounts, nil |
| 167 | } |
| 168 | |
| 169 | func (z *zero) healthURL(c *LocalCluster) (string, error) { |
| 170 | publicPort, err := publicPort(c.dcli, z, zeroHttpPort) |
nothing calls this directly
no test coverage detected