Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 217 for p443 (0.43 sec)

  1. pkg/controller/endpointslicemirroring/metrics/cache_test.go

    	endpointsliceutil "k8s.io/endpointslice/util"
    )
    
    func TestNumEndpointsAndSlices(t *testing.T) {
    	c := NewCache(int32(100))
    
    	p80 := int32(80)
    	p443 := int32(443)
    
    	pmKey80443 := endpointsliceutil.NewPortMapKey([]discovery.EndpointPort{{Port: &p80}, {Port: &p443}})
    	pmKey80 := endpointsliceutil.NewPortMapKey([]discovery.EndpointPort{{Port: &p80}})
    
    	spCacheEfficient := NewEndpointPortCache()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. tests/testdata/config/external_services.yaml

    metadata:
      name: external-svc-ports
      namespace: testns
    spec:
       hosts:
       - ports.extsvc.com
       - ports1.extsvc.com
    #   - *.ports2.extsvc.com
       ports:
       - number: 443
         name: extsvc-https
         protocol: HTTPS # not HTTPS.
       - number: 8443
         name: https-ports2
         protocol: HTTP
       resolution: DNS
    
    ---
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-svc-dst
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  3. tests/integration/iop-integration-test-defaults-with-quic.yaml

                targetPort: 15021
                name: status-port
              - port: 80
                targetPort: 8080
                name: http2
              - port: 443
                targetPort: 8443
                name: https
              - port: 443
                targetPort: 8443
                name: http3
                protocol: UDP
      values:
        pilot:
          env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 23:20:19 UTC 2022
    - 718 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication_test.go

    			},
    			expected: rest.Config{BearerToken: "first"},
    		},
    		{
    			name:       "exact match with non-default https port",
    			serverName: "one.two.three.com:8443",
    			kubeconfig: clientcmdapi.Config{
    				AuthInfos: map[string]*clientcmdapi.AuthInfo{
    					"one.two.three.com:8443": {Token: "exact"},
    					"*.two.three.com":        {Token: "first"},
    					"*.three.com":            {Token: "second"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/virtualservice_dupmatches.yaml

      namespace: none
    spec:
      hosts:
      - www1.example.com
      tls:
      - match:
        - port: 2443
          sniHosts:
          - www1.example.com
        route:
        - destination:
            host: www1.googleapis.com
      - match:
        - port: 2443
          sniHosts:
          - www1.example.com
        - port: 8443
          sniHosts:
          - www1.example.com
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/flag_values_enable_egressgateway.golden.yaml

        release: istio
      name: istio-egressgateway
      namespace: istio-system
    spec:
      ports:
      - name: http2
        port: 80
        protocol: TCP
        targetPort: 8080
      - name: https
        port: 443
        protocol: TCP
        targetPort: 8443
      selector:
        app: istio-egressgateway
        istio: egressgateway
      type: ClusterIP
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 566 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/deployment-service-no-selector.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: svc-no-selector
      namespace: default
    spec:
      ports:
        - name: https
          port: 443
          protocol: TCP
          targetPort: 6443
    ---
    # this deployment is not associated with any service, so it should generate a warning
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      namespace: default
      labels:
        app: helloworld
        version: v2
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 03:43:16 UTC 2023
    - 894 bytes
    - Viewed (0)
  8. operator/pkg/translate/strategic_port_merge_test.go

    )
    
    var (
    	httpsPort = &v1.ServicePort{
    		Name:       "https",
    		Protocol:   v1.ProtocolTCP,
    		Port:       443,
    		TargetPort: intstr.IntOrString{IntVal: 8443},
    	}
    	quicPort = &v1.ServicePort{
    		Name:       "http3-quic",
    		Protocol:   v1.ProtocolUDP,
    		Port:       443,
    		TargetPort: intstr.IntOrString{IntVal: 8443},
    	}
    	httpPort = &v1.ServicePort{
    		Name:       "http-port",
    		Protocol:   v1.ProtocolTCP,
    		Port:       80,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:37 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  9. tests/integration/iop-integration-test-defaults.yaml

                  - port: 15021
                    targetPort: 15021
                    name: status-port
                  - port: 80
                    targetPort: 8080
                    name: http2
                  - port: 443
                    targetPort: 8443
                    name: https
                    # This is the port where sni routing happens
                  - port: 15443
                    targetPort: 15443
                    name: tls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 23:20:19 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. tests/integration/security/ca_custom_root/main_test.go

    			},
    		},
    		ServiceAccount: true,
    		Ports: []echo.Port{
    			{
    				Name:         "https",
    				Protocol:     protocol.HTTPS,
    				ServicePort:  443,
    				WorkloadPort: 8443,
    				TLS:          true,
    			},
    		},
    		TLSSettings: &common.TLSSettings{
    			RootCert:      rootCert,
    			ClientCert:    clientCert,
    			Key:           Key,
    			AcceptAnyALPN: true,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top