-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathetcd_ssl
More file actions
12 lines (12 loc) · 768 Bytes
/
etcd_ssl
File metadata and controls
12 lines (12 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
764 wget https://pkg.cfssl.org/R1.2/cfssl_linux-amd64
766 wget https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64
768 mv cfssl_linux-amd64 /usr/bin/cfssl
769 mv cfssljson_linux-amd64 /usr/bin/cfssljson
770 cfssl --help
771 chmod 777 /usr/bin/cfssl
772 chmod 777 /usr/bin/cfssljson
773 cfssl
776 cfssl gencert --initca=true etcd-root-ca-csr.json | cfssljson --bare etcd-root-ca
777 cfssl gencert --ca etcd-root-ca.pem --ca-key etcd-root-ca-key.pem --config etcd-gencert.json etcd-csr.json | cfssljson --bare etcd
785 cfssl gencert --initca=true etcd-root-ca-csr.json | cfssljson --bare etcd-root-ca
786 cfssl gencert --ca etcd-root-ca.pem --ca-key etcd-root-ca-key.pem --config etcd-gencert.json etcd-csr.json | cfssljson --bare etcd