Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 432 for lmhosts (0.11 sec)

  1. pilot/pkg/xds/testdata/benchmarks/http.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: 80
        name: http
        protocol: HTTP
      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
    - 907 bytes
    - Viewed (0)
  2. pilot/pkg/xds/cds_test.go

    kind: ServiceEntry
    metadata:
      name: se1
    spec:
      hosts:
      - example.com
      ports:
      - name: port1
        number: 80
        protocol: HTTP
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: se2
    spec:
      hosts:
      - example.com
      ports:
      - name: port1
        number: 8080
        protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. docs/iam/policies/pbac-tests.sh

    ret=$?
    if [ $ret -eq 0 ]; then
    	echo "BUG: PutObject to bucket: multi-key-poc without sse-kms should fail. Succedded"
    	exit 1
    fi
    
    ./mc cp /etc/hosts myminio1/multi-key-poc/hosts --enc-kms "myminio1/multi-key-poc/hosts=minio-default-key"
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: PutObject to bucket: multi-key-poc with valid sse-kms should succeed. Failed"
    	exit 1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. tests/integration/security/policy_attachment_only/testdata/requestauthn/gateway-jwt.yaml.tmpl

      rules:
      - to:
        - operation:
            hosts:
    {{- range $svc := .Services }}
            - "example.{{ $svc.ServiceName }}.com"
    {{- end }}
        from:
        - source:
            requestPrincipals: ["******@****.***/sub-1"]
        - source:
            requestPrincipals: ["******@****.***/sub-1"]
      - to:
        - operation:
            hosts:
      {{- range $svc := .Services }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/reference-policy-tls.yaml.golden

        internal.istio.io/parents: Gateway/gateway/cross.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-cross
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - cert/cert1.domain.example
        port:
          name: default
          number: 443
          protocol: HTTPS
        tls:
          credentialName: kubernetes-gateway://cert/cert
          mode: SIMPLE
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/multi-gateway.yaml.golden

        internal.istio.io/parents: Gateway/gateway/http.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-http
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - istio-system/*.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
    - 1.1K bytes
    - Viewed (0)
  7. tests/integration/security/testdata/requestauthn/gateway-jwt.yaml.tmpl

      rules:
      - to:
        - operation:
            hosts:
    {{- range $svc := .Services }}
            - "example.{{ $svc.ServiceName }}.com"
    {{- end }}
        from:
        - source:
            requestPrincipals: ["******@****.***/sub-1"]
        - source:
            requestPrincipals: ["******@****.***/sub-1"]
      - to:
        - operation:
            hosts:
      {{- range $svc := .Services }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/memory/store_test.go

    			},
    			Namespace: "ns",
    		},
    		Spec: &v1alpha3.ServiceEntry{
    			Hosts: []string{"www.foo.com"},
    		},
    	}
    	for n := 0; n < b.N; n++ {
    		b.StopTimer()
    		s := initStore(b)
    		b.StartTimer()
    		// update one thousand times
    		for i := 0; i < 1000; i++ {
    			cfg.Name = strconv.Itoa(i)
    			cfg.Spec.(*v1alpha3.ServiceEntry).Hosts[0] = cfg.Name
    			if _, err := s.Update(cfg); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/tunneling/gateway/tls/istio-mutual/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)
  10. tests/integration/pilot/testdata/tunneling/gateway/tls/passthrough/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)
Back to top