Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cpsr (0.04 sec)

  1. src/crypto/x509/x509.go

    func ParseCertificateRequest(asn1Data []byte) (*CertificateRequest, error) {
    	var csr certificateRequest
    
    	rest, err := asn1.Unmarshal(asn1Data, &csr)
    	if err != nil {
    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, asn1.SyntaxError{Msg: "trailing data"}
    	}
    
    	return parseCertificateRequest(&csr)
    }
    
    func parseCertificateRequest(in *certificateRequest) (*CertificateRequest, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    			Patches: make(map[networking.EnvoyFilter_ApplyTo][]*EnvoyFilterConfigPatchWrapper),
    		}
    		// merge EnvoyFilterWrapper
    		for _, efw := range matchedEnvoyFilters {
    			for applyTo, cps := range efw.Patches {
    				for _, cp := range cps {
    					if proxyMatch(proxy, cp) {
    						out.Patches[applyTo] = append(out.Patches[applyTo], cp)
    					}
    				}
    			}
    		}
    	}
    
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

        # Grant kubelets permission to request client certificates
        ${KUBECTL} --kubeconfig "${CERT_DIR}/admin.kubeconfig" create clusterrolebinding kubelet-csr --clusterrole=system:certificates.k8s.io:certificatesigningrequests:selfnodeclient --group=system:nodes
    
        ${CONTROLPLANE_SUDO} cp "${CERT_DIR}/admin.kubeconfig" "${CERT_DIR}/admin-kube-aggregator.kubeconfig"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string revision = 59;
    
      // Controls whether the in-cluster MTLS key and certs are loaded from the secret volume mounts.
      google.protobuf.BoolValue mountMtlsCerts = 60;
    
      // The address of the CA for CSR.
      string caAddress = 61;
    
      // Controls whether one external istiod is enabled.
      google.protobuf.BoolValue externalIstiod = 62;
    
      // Controls whether a remote cluster is the config cluster for an external istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top