Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 473 for p443 (0.07 sec)

  1. pkg/test/framework/components/echo/common/ports/ports.go

    	AutoGRPC         = echo.Port{Name: "auto-grpc", Protocol: protocol.GRPC, ServicePort: 7071, WorkloadPort: 17071}
    	AutoHTTPS        = echo.Port{Name: "auto-https", Protocol: protocol.HTTPS, ServicePort: 9443, WorkloadPort: 19443, TLS: true}
    	HTTPInstance     = echo.Port{Name: "http-instance", Protocol: protocol.HTTP, ServicePort: 82, WorkloadPort: 18082, InstanceIP: true}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 08 16:17:34 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/testdata/none_lds_tcp.json

                        "cluster": {
                          "Kind": {
                            "StringValue": "outbound|2443||www1.googleapis.com"
                          }
                        },
                        "stat_prefix": {
                          "Kind": {
                            "StringValue": "outbound|2443||www1.googleapis.com"
                          }
                        }
                      }
                    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/apiclient/init_dryrun_test.go

    			expectedObjectJSON: []byte(`{"metadata":{"name":"kubernetes","namespace":"default","creationTimestamp":null,"labels":{"component":"apiserver","provider":"kubernetes"}},"spec":{"ports":[{"name":"https","port":443,"targetPort":6443}],"clusterIP":"10.96.0.1"},"status":{"loadBalancer":{}}}`),
    			expectedErr:        false,
    		},
    		{
    			name:               "get nodes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 09 04:58:02 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    			gateways:        []config.Config{httpsGateway},
    			routeName:       "https.443.https.gateway-https.default",
    			expectedVirtualHosts: map[string][]string{
    				"example.org:443": {"example.org"},
    			},
    			expectedVirtualHostsHostPortStrip: map[string][]string{
    				"example.org:443": {"example.org"},
    			},
    			expectedHTTPRoutes:    map[string]int{"example.org:443": 1},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy_test.go

    						ClusterIP: "hit",
    						Ports: []v1.ServicePort{
    							{Name: "https", Port: 443, TargetPort: intstr.FromInt32(1443)},
    							{Port: 1234, TargetPort: intstr.FromInt32(1234)},
    						},
    					},
    				},
    			},
    			endpoints: matchingEndpoints,
    
    			clusterMode:  expectation{url: "https://hit:443"},
    			endpointMode: expectation{url: "https://127.0.0.1:1443"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar_test.go

    			Protocol: "HTTP",
    		},
    	}
    
    	port7443 = []*Port{
    		{
    			Port:     7443,
    			Protocol: "GRPC",
    			Name:     "service-grpc-tls",
    		},
    	}
    
    	port7442 = []*Port{
    		{
    			Port:     7442,
    			Protocol: "HTTP",
    			Name:     "http-tls",
    		},
    	}
    
    	port744x = []*Port{
    		{
    			Port:     7443,
    			Protocol: "GRPC",
    			Name:     "service-grpc-tls",
    		},
    		{
    			Port:     7442,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. pilot/pkg/security/authn/policy_applier_test.go

    								"origins-0": {
    									Issuer: "invalid|7443|",
    									JwksSourceSpecifier: &envoy_jwt.JwtProvider_RemoteJwks{
    										RemoteJwks: &envoy_jwt.RemoteJwks{
    											HttpUri: &core.HttpUri{
    												Uri: "http://invalid-issuer.com:7443/jwks",
    												HttpUpstreamType: &core.HttpUri_Cluster{
    													Cluster: "outbound|7443||invalid-issuer.com",
    												},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/apiclient/init_dryrun.go

    			},
    		},
    		Spec: v1.ServiceSpec{
    			ClusterIP: internalAPIServerVirtualIP.String(),
    			Ports: []v1.ServicePort{
    				{
    					Name:       "https",
    					Port:       443,
    					TargetPort: intstr.FromInt32(6443),
    				},
    			},
    		},
    	}, nil
    }
    
    // handleGetNode returns a fake node object for the purpose of moving kubeadm init forwards.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/labels_test.go

    		{
    			Name:          "http",
    			HostPort:      80,
    			ContainerPort: 8080,
    			Protocol:      v1.ProtocolTCP,
    		},
    		{
    			Name:          "https",
    			HostPort:      443,
    			ContainerPort: 6443,
    			Protocol:      v1.ProtocolTCP,
    		},
    	}
    	container := &v1.Container{
    		Name:                   "test_container",
    		Ports:                  containerPorts,
    		TerminationMessagePath: "/somepath",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 22:43:36 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/ingressgateway_k8s_settings.golden.yaml

      - name: status-port
        port: 15021
        protocol: TCP
        targetPort: 15021
      - name: http2
        port: 80
        protocol: TCP
        targetPort: 8080
      - name: https
        port: 443
        protocol: TCP
        targetPort: 8443
      selector:
        app: istio-ingressgateway
        istio: ingressgateway
      type: LoadBalancer
    
    ---
    
    
    apiVersion: v1
    kind: Service
    metadata:
      annotations: null
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top