Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for serverCert (0.26 sec)

  1. tests/testdata/config/ingress.yaml

          protocol: HTTP
        hosts:
        - "*"
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - "*"
        tls:
          mode: SIMPLE
          serverCertificate: /etc/certs/servercert.pem
          privateKey: /etc/certs/privatekey.pem
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ingress
      namespace: testns
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 949 bytes
    - Viewed (0)
  2. plugin/pkg/admission/imagepolicy/gencerts.sh

    openssl genrsa -out serverKey.pem 2048
    openssl req -new -key serverKey.pem -out server.csr -subj "/CN=webhook_imagepolicy_server" -config server.conf
    openssl x509 -req -in server.csr -CA caCert.pem -CAkey caKey.pem -CAcreateserial -out serverCert.pem -days 100000 -extensions v3_req -extfile server.conf
    
    # Create a client certiticate
    openssl genrsa -out clientKey.pem 2048
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 14:59:09 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  3. samples/jwt-server/src/main.go

    )
    
    var (
    	httpPort   = flag.String("http", "8000", "HTTP server port")
    	httpsPort  = flag.String("https", "8443", "HTTPS server port")
    	serverCert = flag.String("cert", "", "Optional, the name of server's certificate file")
    	serverkey  = flag.String("key", "", "Optional, the name of server's private key")
    )
    
    // JWTServer implements the sample server that serves jwt keys.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 16 23:56:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pkg/testcerts/testcerts.go

    DYyKQ0uRkAvNVAT2WD87ZiK8IGgn+U7qWc+LlmvVVPJRiKbuxdjtGeH+2PFc9uFD
    5QyMqlncVzkf3N4rNB6p83Yy5gEJLlfVXFKngu0MiH2J2NM7gqlonw==
    -----END RSA PRIVATE KEY-----`)
    
    // ServerCert is a test cert for dynamic admission controller.
    var ServerCert = []byte(`-----BEGIN CERTIFICATE-----
    MIIDATCCAemgAwIBAgIJAIaY2+s9cKkgMA0GCSqGSIb3DQEBCwUAMA4xDDAKBgNV
    BAMMA19jYTAgFw0xNzEyMjIxODA0MjRaGA8yMjkxMTAwNzE4MDQyNFowEjEQMA4G
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:03 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/serving.go

    func NewSecureServingOptions() *genericoptions.SecureServingOptionsWithLoopback {
    	o := genericoptions.SecureServingOptions{
    		BindAddress: netutils.ParseIPSloppy("0.0.0.0"),
    		BindPort:    6443,
    		Required:    true,
    		ServerCert: genericoptions.GeneratableKeyCert{
    			PairName:      "apiserver",
    			CertDirectory: "/var/run/kubernetes",
    		},
    	}
    	return o.WithLoopback()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/options/options.go

    		if len(completed.Authentication.ServiceAccounts.KeyFiles) == 0 && completed.SecureServing.ServerCert.CertKey.KeyFile != "" {
    			if kubeauthenticator.IsValidServiceAccountKeyFile(completed.SecureServing.ServerCert.CertKey.KeyFile) {
    				completed.Authentication.ServiceAccounts.KeyFiles = []string{completed.SecureServing.ServerCert.CertKey.KeyFile}
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. tests/testdata/networking/ingress-gateway/configs.yaml

      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - "*.bookinfo.com"
        tls:
          mode: SIMPLE
          serverCertificate: /etc/certs/servercert.pem
          privateKey: /etc/certs/privatekey.pem
      - port:
          number: 443
          name: https-passthru
          protocol: HTTPS
        hosts:
        - https.secure.com
        tls:
          mode: PASSTHROUGH
      - port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 28 15:04:31 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations.go

    // a leaf certificate w/o the SAN extension
    func (c *missingSANChecker) CheckPeerCertificates(peerCertificates []*x509.Certificate) bool {
    	if len(peerCertificates) > 0 {
    		if serverCert := peerCertificates[0]; !hasSAN(serverCert) {
    			return true
    		}
    	}
    
    	return false
    }
    
    func hasSAN(c *x509.Certificate) bool {
    	sanOID := []int{2, 5, 29, 17}
    
    	for _, e := range c.Extensions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe_test.go

    		{
    			name:         "Success with one trust domain",
    			in:           input1,
    			extraCerts:   serverCerts,
    			statusCode:   http.StatusOK,
    			body:         validSpiffeX509Bundle,
    			wantNumCerts: 1,
    		},
    		{
    			name:         "Success with multiple trust domains",
    			in:           input2,
    			extraCerts:   serverCerts,
    			statusCode:   http.StatusOK,
    			body:         validSpiffeX509Bundle,
    			wantNumCerts: 1,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/certs_test.go

    WCamCwKBgEPa+kVrPs0khQH8+sbFbU9ifj4fhPAiSwj2fKuXFro2mE205vAMHye/
    SYs/mPzYzKSd7F+7Zk6oVrgFVskTiReW3phF+cIl+CdcnIenF0jW1PVgGw8znu+P
    SbHSdqV+tB7AW2J7sH8TZtfMUPAK2MJ4S+1uaHK86K79ym4Rz0E2
    -----END RSA PRIVATE KEY-----`)
    
    var serverCert = []byte(`-----BEGIN CERTIFICATE-----
    MIIC/zCCAeegAwIBAgIJAN7rkfhaX8FZMA0GCSqGSIb3DQEBCwUAMBsxGTAXBgNV
    BAMMEHdlYmhvb2tfYXV0aHpfY2EwIBcNMTYwMjE2MjM0NDI4WhgPMjI4OTEyMDEy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 22 21:47:17 UTC 2020
    - 8.4K bytes
    - Viewed (0)
Back to top