-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add new GetConfig command and inject ImpersonateAs variable
Signed-off-by: Logan Cox <mail@logan-cox.com>
- Loading branch information
1 parent
cf7894e
commit 09252ed
Showing
5 changed files
with
68 additions
and
61 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package k8s | ||
|
||
import ( | ||
"k8s.io/client-go/rest" | ||
"sigs.k8s.io/controller-runtime/pkg/client/config" | ||
) | ||
|
||
var ImpersonateAs = "" | ||
|
||
func GetConfig() (*rest.Config, error) { | ||
cfg, err := config.GetConfig() | ||
|
||
if err != nil { | ||
return &rest.Config{}, err | ||
} | ||
|
||
if ImpersonateAs != "" { | ||
cfg.Impersonate.UserName = ImpersonateAs | ||
} | ||
|
||
return cfg, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters