mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
187 B
5 lines
187 B
5 years ago
|
#!/bin/sh
|
||
|
|
||
|
openssl req -new -config openssl.conf -key key.pem -out key.csr
|
||
|
openssl ca -config openssl.conf -create_serial -batch -in key.csr -out crt.pem -key rootca.key -cert rootca.crt
|