- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for XdsStatusCommand (0.12 sec)
-
istioctl/pkg/proxystatus/proxystatus.go
} }() data, err := io.ReadAll(file) if err != nil { return nil, err } return data, nil } func StableXdsStatusCommand(ctx cli.Context) *cobra.Command { cmd := XdsStatusCommand(ctx) unstableFlags := []string{"xds-via-agents", "xds-via-agents-limit"} cmd.PreRunE = func(cmd *cobra.Command, args []string) error { for _, flag := range unstableFlags { if cmd.PersistentFlags().Changed(flag) {
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/proxystatus/proxystatus_test.go
}, }, Status: corev1.PodStatus{ Phase: corev1.PodRunning, }, }, metav1.CreateOptions{}) assert.NoError(t, err) } verifyExecTestOutput(t, XdsStatusCommand(ctx), c) }) } } func verifyExecTestOutput(t *testing.T, cmd *cobra.Command, c execTestCase) { t.Helper() var out bytes.Buffer cmd.SetArgs(c.args) cmd.SilenceUsage = true
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Mar 15 08:28:50 UTC 2024 - 5.5K bytes - Viewed (0) -
istioctl/cmd/root.go
version.XdsVersionCommand(ctx), // TODO(hanxiaop): this is kept for some releases in case someone is using it. proxystatus.XdsStatusCommand(ctx), } troubleshootingCommands := []*cobra.Command{ version.NewVersionCommand(ctx), proxystatus.StableXdsStatusCommand(ctx), } var debugCmdAttachmentPoint *cobra.Command
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Aug 05 02:08:47 UTC 2024 - 9.6K bytes - Viewed (0)