Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for san1 (0.22 sec)

  1. cmd/kubeadm/app/cmd/phases/init/certs.go

    	sans := []string{}
    
    	for _, dnsName := range certConfig.AltNames.DNSNames {
    		if dnsName != "" {
    			sans = append(sans, dnsName)
    		}
    	}
    
    	for _, ip := range certConfig.AltNames.IPs {
    		sans = append(sans, ip.String())
    	}
    	return fmt.Sprintf("\n\nDefault SANs are %s", strings.Join(sans, ", "))
    }
    
    func runCertsSa(c workflow.RunData) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			features.IstiodServiceCustomHost = tc.customHost
    			var args PilotArgs
    			args.Revision = tc.revision
    			args.Namespace = "istio-system"
    			sans := getDNSNames(&args, tc.discoveryAddress)
    			assert.Equal(t, sans, tc.sans)
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. go.mod

    	github.com/fatih/structs v1.1.0 // indirect
    	github.com/felixge/httpsnoop v1.0.4 // indirect
    	github.com/frankban/quicktest v1.14.4 // indirect
    	github.com/go-asn1-ber/asn1-ber v1.5.7 // indirect
    	github.com/go-jose/go-jose/v4 v4.0.2 // indirect
    	github.com/go-logr/logr v1.4.2 // indirect
    	github.com/go-logr/stdr v1.2.2 // indirect
    	github.com/go-ole/go-ole v1.3.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    	// Required to pass validation and fuzzer tests. These fields are missing in v1beta3, thus we have to
    	// default them to a sane (default) value in the internal type.
    	out.EncryptionAlgorithm = kubeadm.EncryptionAlgorithmRSA2048
    	out.CertificateValidityPeriod = &metav1.Duration{Duration: constants.CertificateValidityPeriod}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      local sans=""
      for extra in "$@"; do
        if [[ -n "${extra}" ]]; then
          sans="${sans}IP:${extra},"
        fi
      done
      sans="${sans}IP:${service_ip},DNS:kubernetes,DNS:kubernetes.default,DNS:kubernetes.default.svc,DNS:kubernetes.default.svc.${DNS_DOMAIN},DNS:${MASTER_NAME}"
    
      echo "Generating certs for alternate-names: ${sans}"
    
      setup-easyrsa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/crypto/tls/tls.go

    			break
    		}
    		skippedBlockTypes = append(skippedBlockTypes, keyDERBlock.Type)
    	}
    
    	// We don't need to parse the public key for TLS, but we so do anyway
    	// to check that it looks sane and matches the private key.
    	x509Cert, err := x509.ParseCertificate(cert.Certificate[0])
    	if err != nil {
    		return fail(err)
    	}
    
    	if x509keypairleaf.Value() != "0" {
    		cert.Leaf = x509Cert
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. go.sum

    github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
    github.com/go-asn1-ber/asn1-ber v1.5.5/go.mod h1:hEBeB/ic+5LoWskz+yKT7vGhhPYkProFKoKdwZRWMe0=
    github.com/go-asn1-ber/asn1-ber v1.5.7 h1:DTX+lbVTWaTw1hQ+PbZPlnDZPEIs0SS/GCZAl535dDk=
    github.com/go-asn1-ber/asn1-ber v1.5.7/go.mod h1:hEBeB/ic+5LoWskz+yKT7vGhhPYkProFKoKdwZRWMe0=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    		{
    			serviceAccount: api.ServiceAccount{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "sa1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Secrets: []api.ObjectReference{},
    			},
    			// Columns: Name, (Num) Secrets, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"sa1", int64(0), "0s"}}},
    		},
    		// Basic service account with two secrets.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    	if tls == nil {
    		return nil, nil
    	}
    	// Explicitly not supported: file mounted
    	// Not yet implemented: TLS mode, https redirect, max protocol version, SANs, CipherSuites, VerifyCertificate
    	out := &istio.ServerTLSSettings{
    		HttpsRedirect: false,
    	}
    	mode := k8s.TLSModeTerminate
    	if tls.Mode != nil {
    		mode = *tls.Mode
    	}
    	namespace := gw.Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.pb.go

    	// Ports for the service.
    	// The target_port may be overridden on a per-workload basis.
    	Ports []*Port `protobuf:"bytes,5,rep,name=ports,proto3" json:"ports,omitempty"`
    	// Optional; if set, the SAN to verify for TLS connections.
    	// Typically, this is not set and per-workload identity is used to verify
    	// TODO: support this field
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top