Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for wsaioctl (0.17 sec)

  1. releasenotes/notes/50728.yaml

      `--set values.pilot.env.METRICS_LOCALHOST_ACCESS_ONLY=true` for Control plane and  
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 478 bytes
    - Viewed (0)
  2. manifests/charts/base/values.yaml

        # For example: https://$remotePilotAddress:15017/validate
        validationURL: ""
        # Validation webhook caBundle value. Useful when running pilot with a well known cert
        validationCABundle: ""
    
        # For istioctl usage to disable istio config crds in base
        enableIstioConfigCRDs: true
    
      defaultRevision: "default"
      experimental:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/comparator.go

    	"google.golang.org/protobuf/reflect/protoreflect"
    	"google.golang.org/protobuf/reflect/protoregistry"
    	"google.golang.org/protobuf/types/known/emptypb"
    
    	"istio.io/istio/istioctl/pkg/util/configdump"
    )
    
    // Comparator diffs between a config dump from Istiod and one from Envoy
    type Comparator struct {
    	envoy, istiod *configdump.Wrapper
    	w             io.Writer
    	context       int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. CODEOWNERS

    /common-protos/                                                  @istio/wg-test-and-release-maintainers
    /install/                                                        @istio/wg-environments-maintainers
    /istioctl/                                                       @istio/wg-user-experience-maintainers @istio/wg-networking-maintainers
    Makefile*                                                        @istio/wg-test-and-release-maintainers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/kube.go

    			}
    		}
    	}
    	return nil
    }
    
    func (i *istioImpl) CreateRemoteSecret(ctx resource.Context, c cluster.Cluster, opts ...string) (string, error) {
    	istioCtl, err := istioctl.New(ctx, istioctl.Config{
    		Cluster: c,
    	})
    	if err != nil {
    		return "", err
    	}
    	istioctlCmd := []string{
    		"create-remote-secret",
    		"--name", c.Name(),
    		"--namespace", i.cfg.SystemNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. releasenotes/notes/51081.yaml

    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    area: traffic-management
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 22:34:29 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. releasenotes/notes/56781.yaml

    #   tests, but included for completeness.
    kind: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    area: installation
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/deployment.go

    		"IPFamilyPolicy": cfg.IPFamilyPolicy,
    	}
    }
    
    // createVMConfig sets up a Service account,
    func createVMConfig(ctx resource.Context, cfg echo.Config) error {
    	istioCtl, err := istioctl.New(ctx, istioctl.Config{Cluster: cfg.Cluster})
    	if err != nil {
    		return err
    	}
    	// generate config files for VM bootstrap
    	dirname := fmt.Sprintf("%s-vm-config-", cfg.Service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql-vm.yaml

          - name: ratings
            image: docker.io/istio/examples-bookinfo-ratings-v2:1.20.1
            imagePullPolicy: IfNotPresent
            env:
              # This assumes you registered your mysql vm as
              # istioctl register -n vm mysqldb 1.2.3.4 3306
              - name: DB_TYPE
                value: "mysql"
              - name: MYSQL_DB_HOST
                value: mysqldb.vm.svc.cluster.local
              - name: MYSQL_DB_PORT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. tests/binary/binaries_test.go

    		if nonGoBinaries.Contains(name) {
    			return
    		}
    		if nonVersionBinaries.Contains(name) {
    			return
    		}
    		cmd := path.Join(*releasedir, name)
    		args := []string{"version", "-ojson"}
    		if name == "istioctl" {
    			args = append(args, "--remote=false")
    		}
    
    		out, err := exec.Command(cmd, args...).Output()
    		if err != nil {
    			t.Fatalf("--version failed with error: %v. Output: %v", err, string(out))
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top