Skip to content

Instantly share code, notes, and snippets.

View vinodc's full-sized avatar

Vinod Chandru vinodc

  • San Francisco, CA
View GitHub Profile
@vinodc
vinodc / ke_config_skel.sh
Created June 27, 2019 00:06 — forked from david-thorman/ke_config_skel.sh
Kloudless Enterprise configuration file skeleton generator
#!/bin/bash
set -eu -o pipefail
gen_priv() {
openssl genrsa 2048 2> /dev/null
}
gen_pub() {
echo "${1}" | openssl rsa -pubout 2> /dev/null
}