(chart string, flags ...string)
| 427 | } |
| 428 | |
| 429 | func (helm *execer) Fetch(chart string, flags ...string) error { |
| 430 | helm.logger.Infof("Fetching %v", chart) |
| 431 | out, err := helm.exec(append([]string{"fetch", chart}, flags...), map[string]string{}) |
| 432 | helm.info(out) |
| 433 | return err |
| 434 | } |
| 435 | |
| 436 | func (helm *execer) ChartPull(chart string, flags ...string) error { |
| 437 | helm.logger.Infof("Pulling %v", chart) |