()
| 159 | } |
| 160 | |
| 161 | func (helm *execer) UpdateRepo() error { |
| 162 | helm.logger.Info("Updating repo") |
| 163 | out, err := helm.exec([]string{"repo", "update"}, map[string]string{}) |
| 164 | helm.info(out) |
| 165 | return err |
| 166 | } |
| 167 | |
| 168 | func (helm *execer) RegistryLogin(repository string, username string, password string) error { |
| 169 | helm.logger.Info("Logging in to registry") |