Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 179 for It (0.02 sec)

  1. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    			validationErrors = append(validationErrors, r...)
    		}
    	}
    	// If it is not a struct nothing to do, returning previously collected validation errors
    	if e.Kind() != reflect.Struct {
    		return validationErrors
    	}
    	for i := 0; i < e.NumField(); i++ {
    		// Corner case of a slice of something, if something is defined type, then process it recursively.
    		if e.Field(i).Kind() == reflect.Slice {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    							checker = checkClustersReached(t.AllClusters(), expectedClusters)
    						} else {
    							// For calls to clusterset.local, we should fail DNS lookup. The clusterset.local host
    							// is only available for a service when it is exported in at least one cluster.
    							checker = checkDNSLookupFailed()
    						}
    						callAndValidate(t, ht, from, to, checker)
    					})
    				})
    			}
    		})
    }
    
    func TestMeshWide(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    	if connectionPool != nil && connectionPool.Http != nil {
    		override := connectionPool.Http.H2UpgradePolicy
    		// If user wants an upgrade at destination rule/port level that means he is sure that
    		// it is a Http port - upgrade in such case. This is useful incase protocol sniffing is
    		// enabled and user wants to upgrade/preserve http protocol from client.
    		if override == networking.ConnectionPoolSettings_HTTPSettings_UPGRADE {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    	EnableK8SServiceSelectWorkloadEntries = env.RegisterBoolVar("PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES", true,
    		"If enabled, Kubernetes services with selectors will select workload entries with matching labels. "+
    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. tests/integration/ambient/waypoint_test.go

    			gwc, _ := client.Get(context.Background(), constants.WaypointGatewayClassName, metav1.GetOptions{})
    			gwc.Status.Conditions = nil
    			client.Update(context.Background(), gwc, metav1.UpdateOptions{})
    			// It should be added back
    			retry.UntilSuccessOrFail(t, check)
    		})
    }
    
    func TestWaypoint(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/configmap.go

    				return err
    			}
    
    			cfgMap, err := mc.getConfigMap(c, cfgMapName)
    			if err != nil {
    				// Remote clusters typically don't have mesh config, allow it to skip
    				if c.IsRemote() && kerrors.IsNotFound(err) {
    					scopes.Framework.Infof("skipped %s meshconfig patch, as it is a remote", c.Name())
    					return nil
    				}
    				return err
    			}
    
    			// Get the MeshConfig yaml from the config map.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards.go

    	FullPush
    )
    
    // UpdateServiceEndpoints updates EndpointShards data by clusterID, hostname, IstioEndpoints.
    // It also tracks the changes to ServiceAccounts. It returns whether endpoints need to be pushed and
    // it also returns if they need to be pushed whether a full push is needed or incremental push is sufficient.
    func (e *EndpointIndex) UpdateServiceEndpoints(
    	shard ShardKey,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/informers.go

    			// netns == ""; at this point netns should have been added via the initial snapshot,
    			// or via the cni plugin. If it happens to get here before the cni plugin somehow,
    			// then we will just fail to add the pod to the mesh, and it will be retried later when cni plugin adds it.
    
    			// We need a pod IP - if the pod was added via the CNI plugin, that plugin told us the IPs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. pkg/kube/krt/collection.go

    	defer h.recomputeMu.Unlock()
    	// A secondary dependency changed...
    	// Got an event. Now we need to find out who depends on it..
    	changedInputKeys := sets.Set[Key[I]]{}
    	// Check old and new
    	for _, ev := range events {
    		// We have a possibly dependant object changed. For each input object, see if it depends on the object.
    		// This can be by name or the entire type.
    		// objectRelations stores each input key to dependency specification.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_tls.go

    		if cb.isHttp2Cluster(c) {
    			// This is HTTP/2 in-mesh cluster, advertise it with ALPN.
    			if features.MetadataExchange && !features.DisableMxALPN {
    				tlsContext.CommonTlsContext.AlpnProtocols = util.ALPNInMeshH2WithMxc
    			} else {
    				tlsContext.CommonTlsContext.AlpnProtocols = util.ALPNInMeshH2
    			}
    		} else {
    			// This is in-mesh cluster, advertise it with ALPN.
    			if features.MetadataExchange && !features.DisableMxALPN {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top