Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 280 for svc4 (0.05 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-routing/bar-httproute.yaml

      hostnames:
      - "bar.example.com"
      rules:
      - matches:
        - headers:
          - type: Exact
            name: env
            value: canary
        backendRefs:
        - name: bar-svc-canary
          port: 8080
      - backendRefs:
        - name: bar-svc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 432 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port.yaml

    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
              clientCertificate: /etc/certs/myclientcert.pem
              privateKey: /etc/certs/client_private_key.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 471 bytes
    - Viewed (0)
  3. src/syscall/asm_freebsd_arm64.s

    TEXT ·Syscall(SB),NOSPLIT,$0-56
    	BL	runtime·entersyscall<ABIInternal>(SB)
    	MOVD	trap+0(FP), R8	// syscall entry
    	MOVD	a1+8(FP), R0
    	MOVD	a2+16(FP), R1
    	MOVD	a3+24(FP), R2
    	SVC	$SYS_syscall
    	BCC	ok
    	MOVD	$-1, R1
    	MOVD	R1, r1+32(FP)
    	MOVD	ZR, r2+40(FP)
    	MOVD	R0, err+48(FP)
    	BL	runtime·exitsyscall<ABIInternal>(SB)
    	RET
    ok:
    	MOVD	R0, r1+32(FP)
    	MOVD	R1, r2+40(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:40:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-out2.yaml

        value:
          stringMatch:
            prefix: istio-ext-authz
      grpcService:
        envoyGrpc:
          authority: my-custom-ext-authz.foo.svc.cluster.local
          clusterName: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
        timeout: 0.002s
      statPrefix: tcp.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:13 UTC 2023
    - 582 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.yaml

      to:
      - group: ""
        kind: Service
        name: my-svc
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["simple.domain.example"]
      rules:
      - backendRefs:
        - name: my-svc
          namespace: service
          port: 80
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/service/portname.go

    	svc := r.Message.(*v1.ServiceSpec)
    	// Skip gateway managed services, which are not created by users
    	if v, ok := r.Metadata.Labels[constants.ManagedGatewayLabel]; ok &&
    		v == constants.ManagedGatewayControllerLabel ||
    		v == constants.ManagedGatewayMeshControllerLabel {
    		return
    	}
    	for i, port := range svc.Ports {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 14:45:58 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/destinationrule-compound-mutual-simple.yaml

    # No caCertificates when mode is simple at destination level and MUTUAL at port level
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-mtls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
          clientCertificate: /etc/certs/myclientcert.pem
          privateKey: /etc/certs/client_private_key.pem
        portLevelSettings:
          - port:
              number: 443
            tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 638 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/destinationrule-with-ca.yaml

    #  caCertificates when mode is mutual at destination level and simple at port level
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-mtls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: MUTUAL
          clientCertificate: /etc/certs/myclientcert.pem
          privateKey: /etc/certs/client_private_key.pem
          caCertificates: /etc/certs/root.pem
        portLevelSettings:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 723 bytes
    - Viewed (0)
  9. tests/testdata/config/se-example-gw.yaml

      resolution: STATIC
    
      endpoints:
      - address: 10.13.0.1
        ports:
          tcplocal: 31200
    ---
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-svc-httpbin
      namespace: exampleegressgw
    spec:
      hosts:
      - httpbin.org
      location: MESH_EXTERNAL
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: DNS
    
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 26 13:51:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/destinationrule-mutual-port.yaml

    kind: DestinationRule
    metadata:
      name: db-mtls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: MUTUAL
              clientCertificate: /etc/certs/myclientcert.pem
              privateKey: /etc/certs/client_private_key.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 472 bytes
    - Viewed (0)
Back to top