Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for san (0.08 sec)

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

    			options.NetworkingDNSDomain,
    			options.NetworkingServiceSubnet,
    		)
    	}
    	return flags
    }
    
    func getSANDescription(certSpec *certsphase.KubeadmCert) string {
    	// Defaulted config we will use to get SAN certs
    	defaultConfig := &kubeadmapiv1.InitConfiguration{
    		LocalAPIEndpoint: kubeadmapiv1.APIEndpoint{
    			// GetAPIServerAltNames errors without an AdvertiseAddress; this is as good as any.
    			AdvertiseAddress: "127.0.0.1",
    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. pkg/istio-agent/agent.go

    }
    
    func (a *Agent) generateNodeMetadata() (*model.Node, error) {
    	var pilotSAN []string
    	if a.proxyConfig.ControlPlaneAuthPolicy == mesh.AuthenticationPolicy_MUTUAL_TLS {
    		// Obtain Pilot SAN, using DNS.
    		pilotSAN = []string{config.GetPilotSan(a.proxyConfig.DiscoveryAddress)}
    	}
    
    	credentialSocketExists, err := checkSocket(context.TODO(), security.CredentialNameSocketPath)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    			// Build the following graph from RFC 4158, figure 7 (note that in this graph edges represent
    			// certificates where the parent is the issuer and the child is the subject.) For the certificate
    			// C->B, use a unconstrained SAN which invalidates the path Trust Anchor -> C -> B -> EE. The
    			// remaining valid paths should be:
    			//   * Trust Anchor -> A -> B -> EE
    			//   * Trust Anchor -> C -> A -> B -> EE
    			//
    			//     +---------+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	return altNames, nil
    }
    
    // GetEtcdAltNames builds an AltNames object for generating the etcd server certificate.
    // `advertise address` and localhost are included in the SAN since this is the interfaces the etcd static pod listens on.
    // The user can override the listen address with `Etcd.ExtraArgs` and add SANs with `Etcd.ServerCertSANs`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      repeated NetworkAddress addresses = 4;
      // Ports for the service.
      // The target_port may be overridden on a per-workload basis.
      repeated Port ports = 5;
      // 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
      repeated string subject_alt_names = 6;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. docs/vi/docs/features.md

    * 100% <abbr title="Python type annotations, với điều này trình soạn thảo của bạn và các công cụ bên ngoài có thể hỗ trợ bạn tốt hơn">type annotated</abbr> code base.
    * Được sử dụng cho các ứng dụng sản phẩm.
    
    ## Tính năng của Starlette
    
    `FastAPI` is thực sự là một sub-class của `Starlette`. Do đó, nếu bạn đã biết hoặc đã sử dụng Starlette, đa số các chức năng sẽ làm việc giống như vậy.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/crypto/tls/boring_test.go

    	fipsOK := mode&boringCertFIPSOK != 0
    	return &boringCertificate{name, org, parentOrg, der, cert, key, fipsOK}
    }
    
    // A self-signed test certificate with an RSA key of size 2048, for testing
    // RSA-PSS with SHA512. SAN of example.golang.
    var (
    	testRSA2048Certificate []byte
    	testRSA2048PrivateKey  *rsa.PrivateKey
    )
    
    func init() {
    	block, _ := pem.Decode(obscuretestdata.Rot13([]byte(`
    -----ORTVA PREGVSVPNGR-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_waypoint.go

    			dir, subset = model.TrafficDirectionOutbound, destination.Subset
    		}
    	}
    
    	return model.BuildSubsetKey(
    		dir,
    		subset,
    		host.Name(destination.Host),
    		port,
    	)
    }
    
    // NB: Un-typed SAN validation is ignored when typed is used, so only typed version must be used with this function.
    func buildCommonConnectTLSContext(proxy *model.Proxy, push *model.PushContext) *tls.CommonTlsContext {
    	ctx := &tls.CommonTlsContext{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        description: '`insecureSkipVerify` specifies whether
                                          the proxy should skip verifying the CA signature
                                          and SAN for the server certificate corresponding
                                          to the host.'
                                        nullable: true
                                        type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/gateway.go

    // hosts and associated routes for that server.
    //
    // Note that the common case is one where multiple servers are exposed under a single multi-SAN cert on a single port.
    // In this case, we have a single https.<portNumber>.<portName>.<gatewayName>.<namespace> RDS for the HTTPS server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top