Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for topologies (0.32 sec)

  1. tests/integration/security/policy_attachment_only/main_test.go

    meshConfig:
      defaultConfig:
        gatewayTopology:
          numTrustedProxies: 1 # Needed for X-Forwarded-For (See https://istio.io/latest/docs/ops/configuration/traffic-management/network-topologies/)
    `
    			} else {
    				cfg.ControlPlaneValues = `
    values:
      pilot: 
        env: 
          PILOT_JWT_ENABLE_REMOTE_JWKS: true
          ISTIO_DUAL_STACK: true
          ENABLE_SELECTOR_BASED_K8S_GATEWAY_POLICY: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tests/integration/security/main_test.go

          PILOT_JWT_ENABLE_REMOTE_JWKS: true
    meshConfig:
      defaultConfig:
        gatewayTopology:
          numTrustedProxies: 1 # Needed for X-Forwarded-For (See https://istio.io/latest/docs/ops/configuration/traffic-management/network-topologies/)
    `
    		})).
    		// Create namespaces first. This way, echo can correctly configure egress to all namespaces.
    		SetupParallel(
    			namespace.Setup(&echo1NS, namespace.Config{Prefix: "echo1", Inject: true}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation.go

    func validateAllowedTopologies(topologies []api.TopologySelectorTerm, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if len(topologies) == 0 {
    		return allErrs
    	}
    
    	rawTopologies := make([]map[string]sets.Set[string], len(topologies))
    	for i, term := range topologies {
    		idxPath := fldPath.Index(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/cluster/cluster.go

    	MetadataValue(key string) string
    
    	// ProxyKubectlOnly returns a boolean value to indicate whether all traffic
    	// should route through the HTTP proxy or only Kubectl traffic. (Useful
    	// in topologies where the API server is private but the ingress is public).
    	ProxyKubectlOnly() bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/scoring.go

    	TopologyPairToPodCounts map[topologyPair]*int64
    	// TopologyNormalizingWeight is the weight we give to the counts per topology.
    	// This allows the pod counts of smaller topologies to not be watered down by
    	// bigger ones.
    	TopologyNormalizingWeight []float64
    }
    
    // Clone implements the mandatory Clone interface. We don't really copy the data since
    // there is no need for that.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    	if !ok {
    		return nil, fmt.Errorf("%+v convert to podtopologyspread.preFilterState error", c)
    	}
    	return s, nil
    }
    
    // calPreFilterState computes preFilterState describing how pods are spread on topologies.
    func (pl *PodTopologySpread) calPreFilterState(ctx context.Context, pod *v1.Pod) (*preFilterState, error) {
    	constraints, err := pl.getConstraints(pod)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (1)
  7. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		{Event: framework.ClusterEvent{Resource: framework.PersistentVolume, ActionType: framework.Add | framework.Update}},
    		// Pods may fail to find available PVs because the node labels do not
    		// match the storage class's allowed topologies or PV's node affinity.
    		// A new or updated node may make pods schedulable.
    		//
    		// A note about UpdateNodeTaint event:
    		// NodeAdd QueueingHint isn't always called because of the internal feature called preCheck.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1/generated.proto

      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      optional string volumeBindingMode = 7;
    
      // allowedTopologies restrict the node topologies where volumes can be dynamically provisioned.
      // Each volume plugin defines its own supported topology specifications.
      // An empty TopologySelectorTerm list means there is no topology restriction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      optional string volumeBindingMode = 7;
    
      // allowedTopologies restrict the node topologies where volumes can be dynamically provisioned.
      // Each volume plugin defines its own supported topology specifications.
      // An empty TopologySelectorTerm list means there is no topology restriction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  10. pkg/apis/storage/validation/validation_test.go

    	}
    }
    
    func makeClass(mode *storage.VolumeBindingMode, topologies []api.TopologySelectorTerm) *storage.StorageClass {
    	return &storage.StorageClass{
    		ObjectMeta:        metav1.ObjectMeta{Name: "foo", ResourceVersion: "foo"},
    		Provisioner:       "kubernetes.io/foo-provisioner",
    		ReclaimPolicy:     &deleteReclaimPolicy,
    		VolumeBindingMode: mode,
    		AllowedTopologies: topologies,
    	}
    }
    
    type bindingTest struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
Back to top