Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/splunk/enterprise/clustermanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ func ApplyClusterManager(ctx context.Context, client splcommon.ControllerClient,

// Create podExecClient (use injected one if provided, otherwise create real one)
if podExecClient == nil {
podExecClient = splutil.GetPodExecClient(client, cr, "")
cmPodName := GetSplunkStatefulsetPodName(SplunkClusterManager, cr.GetName(), 0)
podExecClient = splutil.GetPodExecClient(client, cr, cmPodName)
}

// Add a splunk operator telemetry app
Expand Down
2 changes: 1 addition & 1 deletion pkg/splunk/enterprise/names.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ version = 1.0.0
`

telAppDefMetaConfString = `[]
access = read : [ * ], write : [ admin ]
access = read : [ * ], write : [ admin ]
`

// Command to create telemetry app on non SHC scenarios
Expand Down
Loading