Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for serviceentry (1.82 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    	}
    	return
    }
    
    func (ic *serviceImportCacheImpl) doFullPush(mcsHost host.Name, ns string) {
    	pushReq := &model.PushRequest{
    		Full:           true,
    		ConfigsUpdated: sets.New(model.ConfigKey{Kind: kind.ServiceEntry, Name: mcsHost.String(), Namespace: ns}),
    
    		Reason: model.NewReasonStats(model.ServiceUpdate),
    	}
    	ic.opts.XDSUpdater.ConfigUpdate(pushReq)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	"istio.io/istio/pilot/pkg/server"
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pilot/pkg/serviceregistry/serviceentry"
    	"istio.io/istio/pilot/pkg/status"
    	"istio.io/istio/pilot/pkg/status/distribution"
    	tb "istio.io/istio/pilot/pkg/trustbundle"
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. tests/integration/security/egress_sidecar_tls_origination_test.go

    		"to":               to,
    		"Mode":             destinationRuleMode,
    		"CredentialName":   credentialName,
    		"WorkloadSelector": workloadSelector,
    	}
    	se := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: originate-mtls-for-nginx
    spec:
      hosts:
      - "{{ .to.Config.ClusterLocalFQDN }}"
      ports:
      - number: 80
        name: http-port
        protocol: HTTP
        targetPort: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pilot/pkg/features/experimental.go

    	PassthroughTargetPort = env.Register("ENABLE_RESOLUTION_NONE_TARGET_PORT", true,
    		"If enabled, targetPort will be supported for resolution=NONE ServiceEntry").Get()
    
    	PersistOldestWinsHeuristicForVirtualServiceHostMatching = env.Register("PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/endpoint_builder.go

    				Kind: kind.DestinationRule,
    				Name: dr.Name, Namespace: dr.Namespace,
    			}.HashCode())
    		}
    	}
    	if b.service != nil {
    		configs = append(configs, model.ConfigKey{
    			Kind: kind.ServiceEntry,
    			Name: string(b.service.Hostname), Namespace: b.service.Attributes.Namespace,
    		}.HashCode())
    	}
    
    	// For now, this matches clusterCache's DependentConfigs. If adding anything here, we may need to add them there.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. tests/integration/security/pass_through_filter_chain_test.go

    						// ports differently for each test and rely on allow/deny for each to indicate whether
    						// mtls was used.
    						Source(config.YAML(`apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: {{ .To.ServiceName }}-se
    spec:
      hosts:
      - fake.destination.{{ .To.ServiceName }}
      location: MESH_INTERNAL
      resolution: NONE
      addresses:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    	}()
    
    	CanonicalServiceForMeshExternalServiceEntry = env.Register("LABEL_CANONICAL_SERVICES_FOR_MESH_EXTERNAL_SERVICE_ENTRIES", false,
    		"If enabled, metadata representing canonical services for ServiceEntry resources with a location of mesh_external will be populated"+
    			"in the cluster metadata for those endpoints.").Get()
    
    	LocalClusterSecretWatcher = env.Register("LOCAL_CLUSTER_SECRET_WATCHER", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster.go

    )
    
    // deltaConfigTypes are used to detect changes and trigger delta calculations. When config updates has ONLY entries
    // in this map, then delta calculation is triggered.
    var deltaConfigTypes = sets.New(kind.ServiceEntry.String(), kind.DestinationRule.String())
    
    // BuildClusters returns the list of clusters for the given proxy. This is the CDS output
    // For outbound: Cluster for each service/subset hostname or cidr with SNI set to service hostname
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. pilot/pkg/model/config.go

    )
    
    // Statically link protobuf descriptors from UDPA
    var _ = udpa.TypedStruct{}
    
    type ConfigHash uint64
    
    // ConfigKey describe a specific config item.
    // In most cases, the name is the config's name. However, for ServiceEntry it is service's FQDN.
    type ConfigKey struct {
    	Kind      kind.Kind
    	Name      string
    	Namespace string
    }
    
    func (key ConfigKey) HashCode() ConfigHash {
    	h := hash.New()
    	h.Write([]byte{byte(key.Kind)})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/aggregate/controller.go

    // because the proxy is in a different cluster.
    func skipSearchingRegistryForProxy(nodeClusterID cluster.ID, r serviceregistry.Instance) bool {
    	// Always search non-kube (usually serviceentry) registry.
    	// Check every registry if cluster ID isn't specified.
    	if r.Provider() != provider.Kubernetes || nodeClusterID == "" {
    		return false
    	}
    
    	return !r.Cluster().Equals(nodeClusterID)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top