(name string)
| 521 | } |
| 522 | |
| 523 | func (helm *execer) azcli(name string) ([]byte, error) { |
| 524 | cmdargs := append(strings.Split("acr helm repo add --name", " "), name) |
| 525 | cmd := fmt.Sprintf("exec: az %s", strings.Join(cmdargs, " ")) |
| 526 | helm.logger.Debug(cmd) |
| 527 | outBytes, err := helm.runner.Execute("az", cmdargs, map[string]string{}) |
| 528 | helm.logger.Debugf("%s: %s", cmd, outBytes) |
| 529 | return outBytes, err |
| 530 | } |
| 531 | |
| 532 | func (helm *execer) info(out []byte) { |
| 533 | if len(out) > 0 { |