- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for StringVarP (0.06 sec)
-
istioctl/pkg/cli/option.go
"Group to impersonate for the operation, this flag can be repeated to specify multiple groups.") flags.StringVarP(r.namespace, FlagNamespace, "n", v1.NamespaceAll, "Kubernetes namespace") flags.StringVarP(r.istioNamespace, FlagIstioNamespace, "i", viper.GetString(FlagIstioNamespace), "Istio system namespace") return r } // Namespace returns the namespace flag value.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 30 01:19:20 UTC 2024 - 3.9K bytes - Viewed (0) -
istioctl/pkg/admin/admin.go
}, RunE: func(cmd *cobra.Command, args []string) error { cmd.HelpFunc()(cmd, args) return nil }, } istiodLog := istiodLogCmd(ctx) adminCmd.AddCommand(istiodLog) adminCmd.PersistentFlags().StringVarP(&istiodLabelSelector, "selector", "l", "app=istiod", "label selector") return adminCmd
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 1.4K bytes - Viewed (0) -
istioctl/pkg/clioptions/control_plane.go
} // AttachControlPlaneFlags attaches control-plane flags to a Cobra command. // (Currently just --revision) func (o *ControlPlaneOptions) AttachControlPlaneFlags(cmd *cobra.Command) { cmd.PersistentFlags().StringVarP(&o.Revision, "revision", "r", "", "Control plane revision")
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 01 05:47:27 UTC 2021 - 1.1K bytes - Viewed (0) -
istioctl/pkg/checkinject/checkinject.go
return printCheckInjectorResults(cmd.OutOrStdout(), checkResults) }, ValidArgsFunction: completion.ValidPodsNameArgs(ctx), } cmd.PersistentFlags().StringVarP(&labelPairs, "labels", "l", "", "Check namespace and label pairs injection status, split multiple labels by commas") return cmd } func printCheckInjectorResults(writer io.Writer, was []webhookAnalysis) error {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 9.3K bytes - Viewed (0) -
istioctl/pkg/proxystatus/proxystatus.go
}, ValidArgsFunction: completion.ValidPodsNameArgs(ctx), } opts.AttachControlPlaneFlags(statusCmd) centralOpts.AttachControlPlaneFlags(statusCmd) statusCmd.PersistentFlags().StringVarP(&configDumpFile, "file", "f", "", "Envoy config dump JSON file") statusCmd.PersistentFlags().BoolVar(&multiXdsOpts.XdsViaAgents, "xds-via-agents", false, "Access Istiod via the tap service of each agent")
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 6.2K bytes - Viewed (0) -
istioctl/pkg/authz/authz.go
if err != nil { return err } analyzer.Print(cmd.OutOrStdout()) return nil }, ValidArgsFunction: completion.ValidPodsNameArgs(ctx), } cmd.PersistentFlags().StringVarP(&configDumpFile, "file", "f", "", "The json file with Envoy config dump to be checked") return cmd } func getConfigDumpFromFile(filename string) (*configdump.Wrapper, error) { file, err := os.Open(filename)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 5K bytes - Viewed (0)