Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,666 for network4 (0.15 sec)

  1. pkg/kube/inject/testdata/inject/hello-cncf-networks.yaml.injected

      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            k8s.v1.cni.cncf.io/networks: default/istio-cni
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks.yaml.15.template.gen.yaml

                  value: "{{ valueOrDefault .Values.global.multiCluster.clusterName `Kubernetes` }}"
                {{- $network := valueOrDefault (index .InfrastructureLabels `topology.istio.io/network`) .Values.global.network }}
                {{- if $network }}
                - name: ISTIO_META_NETWORK
                  value: "{{ $network }}"
                {{- end }}
                - name: ISTIO_META_INTERCEPTION_MODE
                  value: REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/config/mesh/networks_watcher.go

    // Networks returns the latest network configuration for the mesh.
    func (w *internalNetworkWatcher) Networks() *meshconfig.MeshNetworks {
    	if w == nil {
    		return nil
    	}
    	w.mutex.RLock()
    	defer w.mutex.RUnlock()
    	return w.networks
    }
    
    // PrevNetworks returns the previous network configuration for the mesh.
    func (w *internalNetworkWatcher) PrevNetworks() *meshconfig.MeshNetworks {
    	if w == nil {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/net/external_test.go

    	}
    
    	for _, network := range []string{"tcp", "tcp4", "tcp6"} {
    		addr, err := ResolveTCPAddr(network, "www.google.com:http")
    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		switch {
    		case network == "tcp" && addr.IP.To4() == nil:
    			fallthrough
    		case network == "tcp4" && addr.IP.To4() == nil:
    			t.Errorf("got %v; want an IPv4 address on %s", addr, network)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "workloadName": "istiod-test",
          "workloadType": "deployment",
          "canonicalName": "istiod",
          "canonicalRevision": "latest",
          "network": "network2",
          "node": "ambient-worker",
          "status": "Healthy",
          "clusterId": "Kubernetes"
        },
        "network3/10.244.1.39": {
          "workloadIps": [
            "10.244.1.39"
          ],
          "waypoint": {
            "destination": "/10.96.65.117",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks-json.yaml.16.template.gen.yaml

                  value: "{{ valueOrDefault .Values.global.multiCluster.clusterName `Kubernetes` }}"
                {{- $network := valueOrDefault (index .InfrastructureLabels `topology.istio.io/network`) .Values.global.network }}
                {{- if $network }}
                - name: ISTIO_META_NETWORK
                  value: "{{ $network }}"
                {{- end }}
                - name: ISTIO_META_INTERCEPTION_MODE
                  value: REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/hello-existing-cncf-networks.yaml.injected

      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            k8s.v1.cni.cncf.io/networks: alt_cni, default/istio-cni
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pkg/test/loadbalancersim/mesh/mesh.go

    	request := dest.Request
    	if networkLatency > time.Duration(0) {
    		request = func(onDone func()) {
    			m.networkQ.Schedule(func() {
    				dest.Request(onDone)
    			}, time.Now().Add(networkLatency))
    		}
    	}
    
    	return network.NewConnection(dest.Name(), request)
    }
    
    func (m *Instance) ShutDown() {
    	m.networkQ.ShutDown()
    	m.nodes.ShutDown()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 27 20:55:37 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. pkg/test/framework/components/cluster/clusters.go

    	}
    	return out
    }
    
    // Networks returns the list of network names for the clusters.
    func (c Clusters) Networks() []string {
    	return c.ByNetwork().Networks()
    }
    
    // ForNetworks returns the list of clusters in the given networks.
    func (c Clusters) ForNetworks(networks ...string) Clusters {
    	out := make(Clusters, 0, len(c))
    	for _, cc := range c {
    		for _, network := range networks {
    			if cc.NetworkName() == network {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	networkID := network.ID(b.labels[label.TopologyNetwork.Name])
    	if networkID == "" {
    		networkID = b.endpointNetwork(endpointAddress)
    		b.labels[label.TopologyNetwork.Name] = string(networkID)
    	}
    
    	return &model.IstioEndpoint{
    		Labels:                b.labels,
    		ServiceAccount:        b.serviceAccount,
    		Locality:              b.locality,
    		TLSMode:               b.tlsMode,
    		Address:               endpointAddress,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top