Skip to content

Commit

Permalink
[BugFix] Support podLabels in FeProxy component
Browse files Browse the repository at this point in the history
Signed-off-by: Igor Raits <[email protected]>
  • Loading branch information
ignatenkobrain committed Feb 27, 2025
1 parent 916e90b commit 870f8cc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/k8sutils/templates/pod/spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ func Labels(clusterName string, spec v1.SpecInterface) map[string]string {
if v != nil {
labels.AddLabel(v.PodLabels)
}
case *v1.StarRocksFeProxySpec:
if v != nil {
labels.AddLabel(v.PodLabels)
}
}
return labels
}
Expand Down

0 comments on commit 870f8cc

Please sign in to comment.