mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-21 08:33:49 +00:00
* feat(placement): split debug controller as standalone service with proper validation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Qing Hao <qhao@redhat.com> * feat(placement): make placement service conditional on PlacementDebugServer feature gate Make placement debug service deployment conditional based on PlacementDebugServer feature gate to allow users to control whether to expose the debug endpoint. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Signed-off-by: Qing Hao <qhao@redhat.com> --------- Signed-off-by: Qing Hao <qhao@redhat.com> Co-authored-by: Claude <noreply@anthropic.com>
53 lines
1.0 KiB
Go
53 lines
1.0 KiB
Go
package main
|
|
|
|
import (
|
|
goflag "flag"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/pflag"
|
|
utilflag "k8s.io/component-base/cli/flag"
|
|
"k8s.io/component-base/logs"
|
|
|
|
"open-cluster-management.io/ocm/pkg/cmd/hub"
|
|
"open-cluster-management.io/ocm/pkg/version"
|
|
)
|
|
|
|
func main() {
|
|
pflag.CommandLine.SetNormalizeFunc(utilflag.WordSepNormalizeFunc)
|
|
pflag.CommandLine.AddGoFlagSet(goflag.CommandLine)
|
|
|
|
logs.AddFlags(pflag.CommandLine)
|
|
logs.InitLogs()
|
|
defer logs.FlushLogs()
|
|
|
|
command := newPlacementCommand()
|
|
if err := command.Execute(); err != nil {
|
|
fmt.Fprintf(os.Stderr, "%v\n", err)
|
|
os.Exit(1) //nolint:gocritic
|
|
}
|
|
}
|
|
|
|
func newPlacementCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "placement",
|
|
Short: "Placement Controller",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
_ = cmd.Help()
|
|
os.Exit(1)
|
|
},
|
|
}
|
|
|
|
if v := version.Get().String(); len(v) == 0 {
|
|
cmd.Version = "<unknown>"
|
|
} else {
|
|
cmd.Version = v
|
|
}
|
|
|
|
cmd.AddCommand(hub.NewPlacementController())
|
|
cmd.AddCommand(hub.NewDebugServer())
|
|
|
|
return cmd
|
|
}
|