Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 183 for planes (0.3 sec)

  1. pkg/test/framework/components/istio/kube.go

    			// Install ingress and egress gateways
    			// These need to be installed as a separate step for external control planes because config clusters are installed
    			// before the external control plane cluster. Since remote clusters use gateway injection, we can't install the gateways
    			// until after the control plane is running, so we install them here. This is not really necessary for pure (non-config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pkg/test/framework/test.go

    	//
    	// Deprecated: All new tests should support multiple clusters.
    	RequiresSingleCluster() Test
    	// RequiresLocalControlPlane ensures that clusters are using locally-deployed control planes.
    	//
    	// Deprecated: Tests should not make assumptions regarding control plane topology.
    	RequiresLocalControlPlane() Test
    	// RequiresSingleNetwork ensures that clusters are in the same network
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. istioctl/pkg/workload/workload.go

    }
    
    // Returns a map with each k,v entry on a new line
    func mapToString(m map[string]string) string {
    	lines := []string{}
    	for k, v := range m {
    		lines = append(lines, fmt.Sprintf("%s=%s", k, shellescape.Quote(v)))
    	}
    	sort.Strings(lines)
    	return strings.Join(lines, "\n") + "\n"
    }
    
    // extractClusterIDFromInjectionConfig can extract clusterID from injection configmap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. operator/pkg/verifier/verifier.go

    		revCount++
    		if rev == "default" {
    			continue
    		}
    		revision = rev
    	}
    	if revision == "" {
    		revs = "default"
    	} else {
    		revs = revision
    	}
    	v.logger.LogAndPrintf("%d Istio control planes detected, checking --revision %q only", revCount, revs)
    	return revision, nil
    }
    
    func (v *StatusVerifier) verifyFinalIOP() error {
    	crdCount, istioDeploymentCount, daemonSetCount, err := v.verifyPostInstallIstioOperator(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/values.yaml

          # stackdriver filter settings.
          stackdriver:
            enabled: false
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
      # Revision tags are aliases to Istio control plane revisions
      revisionTags: []
      # For Helm compatibility.
      ownerName: ""
      # meshConfig defines runtime configuration of components, including Istiod and istio-agent behavior
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/values.yaml

          # stackdriver filter settings.
          stackdriver:
            enabled: false
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
    
      # Revision tags are aliases to Istio control plane revisions
      revisionTags: []
    
      # For Helm compatibility.
      ownerName: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/admin/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/accesslog/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/bootstrap/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/common/key_value/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          if (prevSlot && prevSlot <= place.Pos) {
            // We already have a higher slot in this stack.
          } else {
            stackMap.set(place.Stack, place.Pos);
          }
        }
    
        // Now partition the stacks.
        const groups = [];           // Array of Group {name, src, sum, self, places}
        const groupMap = new Map();  // Map from Source to Group
        for (const place of places) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// ControlPlane defines the additional control plane instance to be deployed on the joining node.
    	// If nil, no additional control plane instance will be deployed.
    	// +optional
    	ControlPlane *JoinControlPlane `json:"controlPlane,omitempty"`
    
    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm join --help" command.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/types.go

    	// ControlPlane defines the additional control plane instance to be deployed on the joining node.
    	// If nil, no additional control plane instance will be deployed.
    	ControlPlane *JoinControlPlane
    
    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm join --help" command.
    	// The flag "--skip-phases" takes precedence over this field.
    	SkipPhases []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top