Skip to content

Commit

Permalink
Updating SkupperPodmanSite.Status to check if site.AuthMode is internal.
Browse files Browse the repository at this point in the history
Fixes #1389
  • Loading branch information
Karen-Schoener committed Apr 23, 2024
1 parent a1c5dd9 commit 207b873
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/skupper/skupper_podman_site.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,9 @@ func (s *SkupperPodmanSite) Status(cmd *cobra.Command, args []string) error {

if site.EnableFlowCollector {
statusOutput.ConsoleUrl = site.GetConsoleUrl()
statusOutput.Credentials = formatter.PlatformSupport{"podman volume", "'skupper-console-users'"}
if site.AuthMode == "internal" {
statusOutput.Credentials = formatter.PlatformSupport{"podman volume", "'skupper-console-users'"}
}
}

if verboseStatus {
Expand Down

0 comments on commit 207b873

Please sign in to comment.