Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 168 for wsaioctl (0.15 sec)

  1. istioctl/cmd/root.go

    	"istio.io/istio/istioctl/pkg/kubeinject"
    	"istio.io/istio/istioctl/pkg/metrics"
    	"istio.io/istio/istioctl/pkg/multicluster"
    	"istio.io/istio/istioctl/pkg/precheck"
    	"istio.io/istio/istioctl/pkg/proxyconfig"
    	"istio.io/istio/istioctl/pkg/proxystatus"
    	"istio.io/istio/istioctl/pkg/root"
    	"istio.io/istio/istioctl/pkg/tag"
    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/validate"
    	"istio.io/istio/istioctl/pkg/version"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. tests/integration/pilot/piggyback_test.go

    						{[]string{"proxy-status", "--plaintext", "--xds-address", pf.Address()}},
    					}
    					for _, args := range argsToTest {
    						istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{Cluster: t.Clusters().Default()})
    						output, _, err := istioCtl.Invoke(args.args)
    						if err != nil {
    							return err
    						}
    
    						// Just verify pod A is known to Pilot; implicitly this verifies that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. tests/integration/pilot/revisions/uninstall_test.go

    				istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    				uninstallCmd := []string{
    					"uninstall",
    					"--revision=" + notFoundRevision, "--dry-run",
    				}
    				_, actualError, _ := istioCtl.Invoke(uninstallCmd)
    				if !strings.Contains(actualError, revisionNotFound) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. releasenotes/notes/add-openshift-profile.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
     - |
      **Added** an experimental OpenShift Kubernetes platform profile to `istioctl`. To install with the OpenShift profile, use `istioctl install --set profile=openshift`.
    docs:
      - '[OpenShift Platform Setup] https://istio.io/docs/setup/platform-setup/openshift/'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 19 15:00:13 UTC 2024
    - 455 bytes
    - Viewed (0)
  5. istioctl/pkg/proxystatus/proxystatus.go

    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/istioctl/pkg/completion"
    	"istio.io/istio/istioctl/pkg/multixds"
    	"istio.io/istio/istioctl/pkg/util/ambient"
    	"istio.io/istio/istioctl/pkg/writer/compare"
    	"istio.io/istio/istioctl/pkg/writer/pilot"
    	pilotxds "istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pkg/log"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. istioctl/pkg/dashboard/dashboard.go

    		CommandExample: `  # Open Envoy dashboard for the productpage-123-456.default pod
      istioctl dashboard envoy productpage-123-456.default
    
      # Open Envoy dashboard for one pod under a deployment
      istioctl dashboard envoy deployment/productpage-v1
    
      # with short syntax
      istioctl dash envoy productpage-123-456.default
      istioctl d envoy productpage-123-456.default
    `,
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top