mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-24 01:38:43 +00:00
Fix linting errors
This commit is contained in:
parent
12d513f5af
commit
b4883e290b
1 changed files with 1 additions and 1 deletions
|
|
@ -382,7 +382,7 @@ func InstallClusterManagerRBAC(conf *rest.Config) string {
|
|||
}
|
||||
secret, err := clientset.CoreV1().Secrets(ns).Get(secretName, metav1.GetOptions{})
|
||||
if err != nil {
|
||||
log.Fatalf("Failed to retrieve secret: %v", secretName, err)
|
||||
log.Fatalf("Failed to retrieve secret '%s': %v", secretName, err)
|
||||
}
|
||||
token, ok := secret.Data["token"]
|
||||
if !ok {
|
||||
|
|
|
|||
Loading…
Reference in a new issue