Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 748 for lmhosts (0.1 sec)

  1. tests/testdata/config/se-example-gw.yaml

    kind: Sidecar
    metadata:
      name: default
      namespace: exampleegressgw
    spec:
      egress:
      - hosts:
          - exampleegressgw/*
    ---
    # Test workload entry
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: workload
      namespace: exampleegressgw
    spec:
      hosts:
      - test.exampleegressgw
    
      ports:
      - number: 1300
        name: tcplocal
        protocol: TCP
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 26 13:51:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  2. samples/external/pypi.yaml

    # This ServiceEntry exposes the hosts needed for Python `pip`.
    # After applying this file, Istio-enabled pods will be able to execute
    # `pip search istio`.
    
    # HTTP and TLS, the host must be specified
    # See https://istio.io/docs/tasks/traffic-management/egress/
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: python-https
    spec:
      hosts:
      - pypi.python.org
      ports:
      - number: 443
        name: https
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 28 20:28:21 UTC 2019
    - 962 bytes
    - Viewed (0)
  3. hack/make-rules/test-e2e-node.sh

               if [[ "${hosts}" != "" ]]; then
                 hosts="${hosts},"
               fi
               echo "Reusing host ${instance_prefix}-${i}"
               hosts="${hosts}${instance_prefix}-${i}"
             else
               if [[ "${images}" != "" ]]; then
                 images="${images},"
               fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tests/testdata/config/se-example.yaml

    kind: Sidecar
    metadata:
      name: default
      namespace: seexamples
    spec:
      egress:
      - hosts:
          - seexamples/* # Doesn't work without this - should be default
    
    ---
    # Test workload entry
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: workload
      namespace: seexamples
    spec:
      hosts:
      - test.seexamples
    
      ports:
      - number: 1200
        name: tcplocal
        protocol: TCP
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 27 15:20:03 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  5. internal/grid/debug.go

    		Timeout: 5 * time.Second,
    	}
    	var res TestGrid
    	res.Hosts = hosts
    	ready := make(chan struct{})
    	ctx, cancel := context.WithCancel(context.Background())
    	res.cancel = cancel
    	for i, host := range hosts {
    		manager, err := NewManager(ctx, ManagerOptions{
    			Dialer: dialer.DialContext,
    			Local:  host,
    			Hosts:  hosts,
    			AuthRequest: func(r *http.Request) error {
    				return nil
    			},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/sidecar-selector.yaml

      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: maps-to-nonexistent
      namespace: default
    spec:
      workloadSelector:
        labels:
          app: bogus # This doesn't exist, and should generate an error
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/analyze-list-type.yaml

                name: tcp
                protocol: TCP
              hosts:
                - "foo.bar"
    
      - apiVersion: networking.istio.io/v1alpha3
        kind: Gateway
        metadata:
          name: alpha-l
        spec:
          selector:
            istio: ingressgateway
          servers:
            - port:
                number: 80
                name: http
                protocol: HTTP
              hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 29 14:06:38 UTC 2022
    - 869 bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/network_test.go

    	// map fqdn hostname -> successful query count
    	hosts map[string]int
    }
    
    func newFakeDNSServer(ttl uint32, hosts sets.String) *fakeDNSServer {
    	var wg sync.WaitGroup
    	wg.Add(1)
    	s := &fakeDNSServer{
    		Server: &dns.Server{Addr: ":0", Net: "udp", NotifyStartedFunc: wg.Done},
    		ttl:    ttl,
    		hosts:  make(map[string]int, len(hosts)),
    	}
    	s.Handler = s
    
    	for k := range hosts {
    		s.hosts[dns.Fqdn(k)] = 0
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. samples/multicluster/expose-istiod.yaml

          tls:
            mode: PASSTHROUGH        
          hosts:
            - "*"
        - port:
            name: tls-istiodwebhook
            number: 15017
            protocol: tls
          tls:
            mode: PASSTHROUGH          
          hosts:
            - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: istiod-vs
    spec:
      hosts:
      - "*"
      gateways:
      - istiod-gateway
      tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 967 bytes
    - Viewed (0)
Back to top