Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 433 for lmhosts (0.11 sec)

  1. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.yaml.golden

        internal.istio.io/parents: Gateway/eastwestgateway/istiod-grpc.istio-system
      creationTimestamp: null
      name: eastwestgateway-istio-autogenerated-k8s-gateway-istiod-grpc
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - istio-system/*
        port:
          name: default
          number: 15012
          protocol: TLS
        tls: {}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/tls.yaml.golden

        internal.istio.io/parents: Gateway/gateway/passthrough.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-passthrough
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
          name: default
          number: 34000
          protocol: TLS
        tls: {}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    					protocol: protocol.HTTP,
    				},
    			},
    		},
    		{
    			name: "Duplicate hosts in TLS filterChain",
    			node: &pilot_model.Proxy{Metadata: &pilot_model.NodeMetadata{}},
    			server: &networking.Server{
    				Port: &networking.Port{
    					Protocol: "HTTPS",
    				},
    				Hosts: []string{"example.org", "example.org"},
    				Tls: &networking.ServerTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/delegated.yaml.golden

        internal.istio.io/parents: Gateway/gateway/apple.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-apple
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - apple/apple.example
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

      rules:
        - to: # only allow /allow for company.com
            - operation:
                paths: [ "/allow" ]
                hosts: [ "www.company.com" ]
        - to: # checks only a call 443 over istio mutual without JWT
            - operation:
                hosts: [ "{{ .Allowed.ServiceName }}-{{ .Allowed.NamespaceName }}-only.com" ]
          from:
            - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/gateway.go

    	hosts := sets.Set[string]{}
    	if g == nil {
    		return hosts
    	}
    	if g.ContainsAutoPassthroughGateways {
    		for _, tls := range g.MergedServers {
    			for _, s := range tls.Servers {
    				if s.GetTls().GetMode() == networking.ServerTLSSettings_AUTO_PASSTHROUGH {
    					hosts.InsertAll(s.Hosts...)
    				}
    			}
    		}
    	}
    	return hosts
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-reviews
      namespace: default
    spec:
      hosts:
      - external-reviews.org
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: eu-wildcard
      namespace: default
    spec:
      hosts:
      - "*.eu.bookinfo.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/invalid.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:
        - '*/*.domain.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              # don't overwrite /etc/hosts since it's managed by kubeproxy
              #sudo sh -c 'cat /var/run/secrets/istio/bootstrap/hosts >> /etc/hosts'
    
              # since we're not overwriting /etc/hosts on k8s, verify that istiod hostname in /etc/hosts
              # matches the value generated by istioctl
              echo "checking istio host"
              SYSTEM_HOST=$(cat /etc/hosts | grep istiod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pilot/pkg/model/cluster_local_test.go

    				ServiceSettings: []*meshconfig.MeshConfig_ServiceSettings{
    					{
    						Settings: &meshconfig.MeshConfig_ServiceSettings_Settings{
    							ClusterLocal: false,
    						},
    						Hosts: []string{"*.kube-system.svc.cluster.local"},
    					},
    				},
    			},
    			host:     "s.kube-system.svc.cluster.local",
    			expected: false,
    		},
    		{
    			name: "override default service",
    			m: &meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top