Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 368 for lmhosts (0.12 sec)

  1. tests/integration/security/testdata/requestauthn/global-jwt.yaml.tmpl

          istio: {{.GatewayIstioLabel | default "ingressgateway"}}
      rules:
      - to:
        - operation:
            hosts:
    {{- range $svc := .Services }}
            - "example.{{ $svc.ServiceName }}.com"
    {{- end }}
        from:
        - source:
            requestPrincipals: ["******@****.***/sub-1"]
      - to:
        - operation:
            hosts:
      {{- range $svc := .Services }}
            - "any-request-principal-ok.{{ $svc.ServiceName }}.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/tcp.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: 34000
          protocol: TCP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1019 bytes
    - Viewed (0)
  3. pilot/pkg/xds/testdata/benchmarks/tls.yaml

    # Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 7070
        name: tls
        protocol: TLS
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          security.istio.io/tlsMode: istio
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 908 bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: mesh-route-outbound-traffic-to-external-svc-via-egress-gw
    spec:
      hosts:
      - external.{{ .externalNamespace }}.svc.cluster.local
      gateways:
      - mesh
      tcp:
      - match:
        - port: {{ .externalSvcTcpPort }}
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. tests/testdata/config/rule-regex-route.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: regex-extsvc
      namespace: testns
    spec:
       hosts:
       - regex.extsvc.com
       ports:
       - number: 9003
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 8080
          labels:
            version: v1
        - address: 127.0.0.3
          ports:
            http: 8081
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 28 21:38:06 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  6. tests/testdata/config/rule-redirect-injection.yaml

      name: redirect
      namespace: testns
    spec:
       hosts:
       - redirect.test.istio.io
       ports:
       - number: 8080
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 8080
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: redirect
      namespace: testns
    spec:
      hosts:
        - redirect.test.istio.io
      http:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 636 bytes
    - Viewed (0)
  7. tests/testdata/config/rule-weighted-route.yaml

    # Self-contained local test for weighted routes
    # TODO: start services/template for the 2 ports.
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: weighted-extsvc
      namespace: testns
    spec:
       hosts:
       - c-weighted.extsvc.com
       ports:
       - number: 80
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 7072
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/util_test.go

    )
    
    func TestGetWorkloadServiceEntries(t *testing.T) {
    	se1 := config.Config{
    		Meta: config.Meta{GroupVersionKind: gvk.ServiceEntry, Namespace: "default", Name: "se-1"},
    		Spec: &networking.ServiceEntry{
    			Hosts: []string{"*.google.com"},
    			Ports: []*networking.ServicePort{
    				{Number: 80, Name: "http-number", Protocol: "http"},
    				{Number: 8080, Name: "http2-number", Protocol: "http2"},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 17 22:32:10 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/client/CrawlerEngineClient.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String[] hosts =
                    split(address, ",").get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).toArray(n -> new String[n]));
            final Builder builder = Settings.builder().putList("http.hosts", hosts).put("processors", fessConfig.getCrawlerHttpProcessors())
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/virtualservice/conflictingmeshgatewayhosts.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // ConflictingMeshGatewayHostsAnalyzer checks if multiple virtual services
    // associated with the mesh gateway have conflicting hosts. The behavior is
    // undefined if conflicts exist.
    type ConflictingMeshGatewayHostsAnalyzer struct{}
    
    var _ analysis.Analyzer = &ConflictingMeshGatewayHostsAnalyzer{}
    
    // Metadata implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top