Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 490 for wsaioctl (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. Makefile.core.mk

    # istioctl-all makes all of the non-static istioctl executables for each supported OS
    .PHONY: istioctl-all
    istioctl-all: ${TARGET_OUT}/release/istioctl-linux-amd64 ${TARGET_OUT}/release/istioctl-linux-armv7 ${TARGET_OUT}/release/istioctl-linux-arm64 \
    	${TARGET_OUT}/release/istioctl-osx \
    	${TARGET_OUT}/release/istioctl-osx-arm64 \
    	${TARGET_OUT}/release/istioctl-win.exe
    
    .PHONY: istioctl.completion
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. Makefile.overrides.mk

    PHONYS := $(shell ls | grep -v Makefile)
    .PHONY: $(PHONYS)
    $(PHONYS):
    	@$(MAKE_DOCKER) $@
    endif
    
    # istioctl-install builds then installs istioctl into $GOPATH/BIN
    # Used for debugging istioctl during dev work
    .PHONY: istioctl-install
    istioctl-install: istioctl-install-container
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 17:29:39 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. bin/check_samples.sh

    ROOTDIR=$SCRIPTPATH/..
    cd "$ROOTDIR" || exit
    
    # rely on go build cache
    ISTIOCTL=bin/istioctl
    go build -o $ISTIOCTL ./istioctl/cmd/istioctl
    
    for f in samples/**/*.yaml; do
      if grep -q -e "{{" "$f" ; then
        echo "Skipping check for helm template $f"
        continue
      else
        echo "Validating $f..."
      $ISTIOCTL validate -x \
        -f "$f"
      fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1010 bytes
    - Viewed (0)
  8. releasenotes/notes/35539.yaml

    kind: bug-fix
    area: istioctl
    issue:
      - https://github.com/istio/istio/issues/35539
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 14 07:59:40 UTC 2021
    - 545 bytes
    - Viewed (0)
  9. tests/integration/operator/verify_test.go

    	"istio.io/istio/pkg/test/framework/components/istioctl"
    )
    
    func TestPostInstallControlPlaneVerification(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    			cs := t.Environment().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
    - 1.6K bytes
    - Viewed (0)
  10. releasenotes/notes/drop-iop.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Removed** the `istioctl experimental revision` command. Revisions can be inspected by the stable `istioctl tag list` command.
      - |
        **Removed** the `installed-state` `IstioOperator` that was created when running `istioctl install`. This previously provided only a snapshot
        of what was installed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 22:41:06 UTC 2023
    - 769 bytes
    - Viewed (0)
Back to top