Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 251 for cpsr (0.2 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/install_package_path.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. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	}
    
    	return nil
    }
    
    // WriteCSR writes the pem-encoded CSR data to csrPath.
    // The CSR file will be created with file mode 0600.
    // If the CSR file already exists, it will be overwritten.
    // The parent directory of the csrPath will be created as needed with file mode 0700.
    func WriteCSR(csrDir, name string, csr *x509.CertificateRequest) error {
    	if csr == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. pkg/testcerts/generate-certs.sh

    openssl req -new -key ServerKey.pem -out server.csr -subj "/CN=${CN_BASE}_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 certificate
    openssl genrsa -out ClientKey.pem 2048
    openssl req -new -key ClientKey.pem -out client.csr -subj "/CN=${CN_BASE}_client" -config client.conf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/runtime/defs_plan9_arm.go

    	print("r10   ", hex(u.r10), "\n")
    	print("r11   ", hex(u.r11), "\n")
    	print("r12   ", hex(u.r12), "\n")
    	print("sp    ", hex(u.sp), "\n")
    	print("link  ", hex(u.link), "\n")
    	print("pc    ", hex(u.pc), "\n")
    	print("psr   ", hex(u.psr), "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/invalid-utf8-public-key.asc

    CAAgFiEEiybxTePKQyXbjvbPBbVeIBuFJTwFAmFWykACGwwACgkQBbVeIBuFJTyN
    aQP/bwhfZ6jRHooHF50X6DLNNHLndiMy3Qo6AzyfwKQsk7Qp1ePd7Rd3syNAj41O
    NVFiWeztpDlJl2eE0fi/KYUzodtKXDKCtOux5HYpLN4CVvseDaGeLSVJKE29lV1B
    Aa/SY4RrJ5EGNUV+qnRVewsUm6qZykGQq4skPdXUaE9uuEQ=
    =CPFR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. plugin/pkg/admission/certificates/signing/admission.go

    	}
    	csr, ok := a.GetObject().(*api.CertificateSigningRequest)
    	if !ok {
    		return admission.NewForbidden(a, fmt.Errorf("expected type CertificateSigningRequest, got: %T", a.GetObject()))
    	}
    
    	// only run if the status.certificate or status.conditions field has been changed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 28 16:20:40 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  10. 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)
Back to top