Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 415 for wsaioctl (0.12 sec)

  1. release/downloadIstioCtl.sh

    fi
    
    printf "%s download complete!\n" "${filename}"
    
    # setup istioctl
    mkdir -p "$HOME/.istioctl/bin"
    mv "${tmp}/istioctl" "$HOME/.istioctl/bin/istioctl"
    chmod +x "$HOME/.istioctl/bin/istioctl"
    rm -r "${tmp}"
    
    # Print message
    printf "\n"
    printf "Add the istioctl to your path with:"
    printf "\n"
    printf "  export PATH=\$HOME/.istioctl/bin:\$PATH \n"
    printf "\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tests/integration/pilot/analyze_test.go

    			g := NewWithT(t)
    
    			ns := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix: "istioctl-analyze",
    				Inject: true,
    			})
    
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    
    			// For a clean istio install with injection enabled, expect no validation errors
    			output, err := istioctlSafe(t, istioCtl, ns.Name(), true)
    			expectNoMessages(t, g, output)
    			g.Expect(err).To(BeNil())
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. tests/integration/operator/install_test.go

    		Run(func(ctx framework.TestContext) {
    			istioCtl := istioctl.NewOrFail(ctx, ctx, istioctl.Config{})
    			testCases := []installTestCase{
    				{
    					command:   []string{"install", "--dry-run", "--revision", ""},
    					errString: InvalidRevision,
    				},
    				{
    					command:   []string{"install", "--dry-run", "--revision", "1.8.0"},
    					errString: InvalidRevision,
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 14:30:43 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. tests/integration/pilot/istioctl_test.go

    // TestVersion does "istioctl version --remote=true" to verify the CLI understands the data plane version data
    func TestVersion(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			cfg := i.Settings()
    
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{Cluster: t.Environment().Clusters()[0]})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. releasenotes/notes/graudate-revision-tag-command.yaml

    apiVersion: release-notes/v2
    kind: promotion
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 22 17:37:59 UTC 2021
    - 171 bytes
    - Viewed (0)
  6. releasenotes/notes/34325.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Aug 14 12:56:32 UTC 2021
    - 171 bytes
    - Viewed (0)
  7. istioctl/pkg/config/config.go

    	"xds-port":            env.Register("ISTIOCTL_XDS_PORT", 15012, "The istioctl --xds-port override"),
    	"authority":           env.Register("ISTIOCTL_AUTHORITY", "", "The istioctl --authority override"),
    	"cert-dir":            env.Register("ISTIOCTL_CERT_DIR", "", "The istioctl --cert-dir override"),
    	"insecure":            env.Register("ISTIOCTL_INSECURE", false, "The istioctl --insecure override"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jul 30 12:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. tests/integration/operator/switch_cr_test.go

    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    			workDir, err := t.CreateTmpDirectory("operator-controller-test")
    			if err != nil {
    				t.Fatal("failed to create test directory")
    			}
    			cs := t.Clusters().Default()
    			cleanupInClusterCRs(t, cs)
    			t.Cleanup(func() {
    				cleanupIstioResources(t, cs, istioCtl)
    			})
    			s := t.Settings()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. tests/integration/ambient/waypoint_test.go

    					constants.DataplaneModeLabel: "ambient",
    				},
    			})
    
    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"apply",
    				"--namespace",
    				nsConfig.Name(),
    				"--wait",
    			})
    
    			nameSet := []string{"", "w1", "w2"}
    			for _, name := range nameSet {
    				istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    					"waypoint",
    					"apply",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/istioctl_metrics_test.go

    }
    
    func validateDefaultOutput(t framework.TestContext, workload string) error { // nolint:interfacer
    	t.Helper()
    	istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    	args := []string{"experimental", "metrics", workload}
    	output, stderr, fErr := istioCtl.Invoke(args)
    	if fErr != nil {
    		t.Logf("Unwanted exception for 'istioctl %s': %v. Stderr: %v", strings.Join(args, " "), fErr, stderr)
    		return fErr
    	}
    
    	// output will be something like
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top