Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 540 for lmhosts (0.16 sec)

  1. pilot/pkg/config/monitor/file_snapshot_test.go

    spec:
      servers:
      - port:
          number: 80
          name: http
          protocol: http
        hosts:
        - "*.example.com"
    `
    
    var statusRegressionYAML = `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: test
      namespace: test-1
    spec:
      selector:
        app: istio-ingressgateway
      servers:
      - hosts:
        - example.com
        port:
          name: http
          number: 80
          protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads_test.go

    	}
    
    	addVirtualService := func(i int, hosts []string, dest string) {
    		if _, err := s.Store().Create(config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    				Name:             fmt.Sprintf("vs%d", i), Namespace: testConfigNamespace,
    			},
    			Spec: &networking.VirtualService{
    				Hosts: hosts,
    				Http: []*networking.HTTPRoute{{
    					Name: "dest-foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/eastwest.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)
  4. pkg/config/analysis/analyzers/testdata/conflicting-gateways-invalid-port.yaml

    kind: Gateway
    metadata:
      name: beta
    spec:
      selector:
        istio: ingressgateway
      servers:
        - hosts:
            - "foo.bar"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: alpha
    spec:
      selector:
        istio: ingressgateway
      servers:
        - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 06:53:55 UTC 2023
    - 337 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.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)
  6. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

      namespace: ns1
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: has-selector
      namespace: ns1
    spec:
      workloadSelector: # Since this has a workload selector, it shouldn't conflict with the other Sidecar in the namespace
        labels:
          app: foo
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    	if efw == nil {
    		return true
    	}
    	for _, cp := range efw.Patches[networking.EnvoyFilter_CLUSTER] {
    		if cp.Operation != networking.EnvoyFilter_Patch_REMOVE {
    			continue
    		}
    		if commonConditionMatch(pctx, cp) && clusterMatch(c, cp, hosts) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.yaml.golden

        internal.istio.io/parents: Gateway/gateway/my-svc.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-my-svc
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
          name: default
          number: 34000
          protocol: TCP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. security/pkg/pki/util/san_test.go

    	testCases := map[string]struct {
    		hosts       string
    		expectedExt *pkix.Extension
    	}{
    		"URI host": {
    			hosts:       "spiffe://test.domain.com/ns/default/sa/default",
    			expectedExt: getSANExtension([]Identity{uriIdentity}, t),
    		},
    		"IP host": {
    			hosts:       "10.0.0.1",
    			expectedExt: getSANExtension([]Identity{ipIdentity}, t),
    		},
    		"DNS host": {
    			hosts:       "test.domain.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/ingress/testdata/tls.yaml.golden

      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - foo.org
        port:
          name: https-443-ingress-tls-bar-0
          number: 443
          protocol: HTTPS
        tls:
          credentialName: myingress-cert
          mode: SIMPLE
      - hosts:
        - '*'
        port:
          name: http-80-ingress-tls-bar
          number: 80
          protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 968 bytes
    - Viewed (0)
Back to top