- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for AddCommand (0.05 sec)
-
istioctl/pkg/dashboard/dashboard.go
dashboardCmd.AddCommand(graf) jaeger := jaegerDashCmd(cliContext) jaeger.PersistentFlags().IntVar(&jaegerPort, "ui-port", defaultJaegerPort, "The component dashboard UI port.") dashboardCmd.AddCommand(jaeger) zipkin := zipkinDashCmd(cliContext) zipkin.PersistentFlags().IntVar(&zipkinPort, "ui-port", defaultZipkinPort, "The component dashboard UI port.") dashboardCmd.AddCommand(zipkin)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Apr 15 01:29:35 UTC 2024 - 20.5K bytes - Viewed (0) -
istioctl/pkg/ztunnelconfig/ztunnelconfig.go
istioctl ztunnel-config certificates`, Aliases: []string{"zc"}, } configCmd.AddCommand(logCmd(ctx)) configCmd.AddCommand(workloadConfigCmd(ctx)) configCmd.AddCommand(certificatesConfigCmd(ctx)) configCmd.AddCommand(servicesCmd(ctx)) configCmd.AddCommand(policiesCmd(ctx)) configCmd.AddCommand(allCmd(ctx)) configCmd.AddCommand(connectionsCmd(ctx)) return configCmd } type Command struct { Name string }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 19:17:45 UTC 2024 - 22.2K bytes - Viewed (0) -
istioctl/pkg/waypoint/waypoint.go
waypointGenerateCmd.Flags().StringVarP(&revision, "revision", "r", "", "The revision to label the waypoint with") waypointCmd.AddCommand(waypointGenerateCmd) waypointCmd.AddCommand(waypointDeleteCmd) waypointCmd.AddCommand(waypointListCmd) waypointCmd.AddCommand(waypointApplyCmd) waypointCmd.AddCommand(waypointStatusCmd)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 19.6K bytes - Viewed (0) -
cni/pkg/cmd/root.go
viper.AllowEmptyEnv(true) viper.SetEnvKeyReplacer(strings.NewReplacer("-", "_")) logOptions.AttachCobraFlags(rootCmd) ctrlzOptions.AttachCobraFlags(rootCmd) rootCmd.AddCommand(version.CobraCommand()) rootCmd.AddCommand(collateral.CobraCommand(rootCmd, collateral.Metadata{ Title: "Istio CNI Plugin Installer", Section: "install-cni CLI", Manual: "Istio CNI Plugin Installer", }))
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 12.7K bytes - Viewed (0) -
istioctl/pkg/tag/tag.go
} return nil }, RunE: func(cmd *cobra.Command, args []string) error { cmd.HelpFunc()(cmd, args) return nil }, } cmd.AddCommand(tagSetCommand(ctx)) cmd.AddCommand(tagGenerateCommand(ctx)) cmd.AddCommand(tagListCommand(ctx)) cmd.AddCommand(tagRemoveCommand(ctx)) return cmd } func tagSetCommand(ctx cli.Context) *cobra.Command { cmd := &cobra.Command{
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 22 15:40:30 UTC 2024 - 16.5K bytes - Viewed (0) -
istioctl/pkg/workload/workload.go
Example: ` # workload group yaml generation istioctl x workload group create # workload entry configuration generation istioctl x workload entry configure`, } workloadCmd.AddCommand(groupCommand(ctx)) workloadCmd.AddCommand(entryCommand(ctx)) return workloadCmd } func groupCommand(ctx cli.Context) *cobra.Command { groupCmd := &cobra.Command{ Use: "group",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 25.3K bytes - Viewed (0) -
istioctl/pkg/injector/injector-list.go
return fmt.Errorf("unknown subcommand %q", args[0]) } return nil }, RunE: func(cmd *cobra.Command, args []string) error { cmd.HelpFunc()(cmd, args) return nil }, } cmd.AddCommand(injectorListCommand(cliContext)) return cmd } func injectorListCommand(ctx cli.Context) *cobra.Command { var opts clioptions.ControlPlaneOptions cmd := &cobra.Command{ Use: "list",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Oct 18 11:39:52 UTC 2024 - 10.6K bytes - Viewed (0)