chefcryptx / kira

simple infrastructure launcher

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kira Management Tool

Minimum Requirements

RAM: 3072MB

1. Install & Update Ubuntu 20.04

apt update

2. Open terminal or SSH console & logs in as sudo

sudo -s

3. Executes following command that will setup the environment by downloading setup file from github or other source, check integrity of the file, start it and install all essential dependencies

Setup Command Example:

cd /tmp && read -p "Input branch name: " BRANCH && \
 wget https://raw.githubusercontent.com/KiraCore/kira/$BRANCH/workstation/init.sh -O ./i.sh && \
 chmod 555 -v ./i.sh && H=$(sha256sum ./i.sh | awk '{ print $1 }') && read -p "Is '$H' a [V]alid SHA256 ?: "$'\n' -n 1 V && \
 [ "${V,,}" != "v" ] && echo "Hash was NOT accepted by the user" || ./i.sh "$BRANCH"

4. Setup script will further download and install kira management tool

5. By typing kira in the terminal user will have ability to deploy, scale and manage his infrastructure


Internal DNS Names & Subnets

KIRA_REGISTRY_SUBNET="10.1.0.0/16"
KIRA_SENTRY_SUBNET="10.2.0.0/16"
KIRA_SERVICE_SUBNET="10.3.0.0/16"
KIRA_REGISTRY_DNS="registry.local"
KIRA_VALIDATOR_DNS="validator.local"
KIRA_SENTRY_DNS="sentry.local"
KIRA_INTERX_DNS="interx.local"

About

simple infrastructure launcher

License:Other


Languages

Language:Shell 99.3%Language:Dockerfile 0.7%