Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 169 for cpsr (1.11 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/flag_output.golden.yaml

              name: istio-kubeconfig
              readOnly: true
            - mountPath: /var/run/secrets/istiod/tls
              name: istio-csr-dns-cert
              readOnly: true
            - mountPath: /var/run/secrets/istiod/ca
              name: istio-csr-ca-configmap
              readOnly: true
          serviceAccountName: istiod
          volumes:
          - emptyDir:
              medium: Memory
            name: local-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. releasenotes/notes/helm_chart_pilot_extraargsvolumes

    # issue is a list of GitHub issues resolved in this note.
    issue:
    - https://github.com/cert-manager/istio-csr/issues/113
    
    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istio Pilot Helm charts for configuring additional container arguments, volumeMounts, and volumes. Can be used in conjunction with cert-manager istio-csr.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 15:25:03 UTC 2023
    - 430 bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_k8s_settings.golden.yaml

              name: istio-kubeconfig
              readOnly: true
            - mountPath: /var/run/secrets/istiod/tls
              name: istio-csr-dns-cert
              readOnly: true
            - mountPath: /var/run/secrets/istiod/ca
              name: istio-csr-ca-configmap
              readOnly: true
          nodeSelector:
            master: "true"
          serviceAccountName: istiod
          volumes:
          - emptyDir:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. architecture/security/docs/ca.dot

    digraph {
        grpc -> ca [label="Send CSR gRPC Request"]
        subgraph cluster_istioagent {
            label = "Istio Agent"
            color="orange"
            sds
            SecretManager -> caClient [label="Sign CSR"]
            caClient -> grpc
            grpc -> TokenProvider [dir=none,label="Fetch JWT",color=purple]
            grpc -> cfiles [dir=none,label="Fetch Cert",color=purple]
    
            sds -> SecretManager [label="Generate certificate"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 00:43:58 UTC 2023
    - 674 bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_values.golden.yaml

              name: istio-kubeconfig
              readOnly: true
            - mountPath: /var/run/secrets/istiod/tls
              name: istio-csr-dns-cert
              readOnly: true
            - mountPath: /var/run/secrets/istiod/ca
              name: istio-csr-ca-configmap
              readOnly: true
          nodeSelector:
            node-name: test
          serviceAccountName: istiod
          volumes:
          - emptyDir:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. samples/certs/generate-workload.sh

      if [ -f "$FINAL_DIR"/ca-cert-alt.srl ]; then
        rm "$FINAL_DIR"/ca-cert-alt.srl
      fi
      if [ -f "$FINAL_DIR"/workload.cfg ]; then
        rm "$FINAL_DIR"/workload.cfg
      fi
      if [ -f "$FINAL_DIR"/workload.csr ]; then
        rm "$FINAL_DIR"/workload.csr
      fi
    }
    
    trap cleanup EXIT
    
    openssl genrsa -out "$FINAL_DIR/workload-$sa-key.pem" 2048
    
    cat > "$FINAL_DIR"/workload.cfg <<EOF
    [req]
    distinguished_name = req_distinguished_name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/bootstrap/bootstrap.go

    // We can't directly hash the serialized CSR because of random padding that we
    // regenerate every loop and we include usages which are not contained in the
    // CSR. This needs to be kept up to date as we add new fields to the node
    // certificates and with ensureCompatible.
    func digestedName(publicKey interface{}, subject *pkix.Name, usages []certificatesv1.KeyUsage) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  8. security/pkg/server/ca/fuzz_test.go

    	"istio.io/istio/pkg/security"
    	mockca "istio.io/istio/security/pkg/pki/ca/mock"
    	caerror "istio.io/istio/security/pkg/pki/error"
    )
    
    func FuzzCreateCertificate(f *testing.F) {
    	fuzz.Fuzz(f, func(fg fuzz.Helper) {
    		csr := fuzz.Struct[pb.IstioCertificateRequest](fg)
    		ca := fuzz.Struct[mockca.FakeCA](fg)
    		ca.SignErr = caerror.NewError(caerror.CSRError, fmt.Errorf("cannot sign"))
    		server := &Server{
    			ca:             &ca,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 21:32:54 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. pkg/apis/certificates/helpers.go

    	"strings"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // ParseCSR extracts the CSR from the bytes and decodes it.
    func ParseCSR(pemBytes []byte) (*x509.CertificateRequest, error) {
    	block, _ := pem.Decode(pemBytes)
    	if block == nil || block.Type != "CERTIFICATE REQUEST" {
    		return nil, errors.New("PEM block type must be CERTIFICATE REQUEST")
    	}
    	csr, err := x509.ParseCertificateRequest(block.Bytes)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

              name: istio-kubeconfig
              readOnly: true
            - mountPath: /var/run/secrets/istiod/tls
              name: istio-csr-dns-cert
              readOnly: true
            - mountPath: /var/run/secrets/istiod/ca
              name: istio-csr-ca-configmap
              readOnly: true
          serviceAccountName: istiod
          volumes:
          - emptyDir:
              medium: Memory
            name: local-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top