13.2. Installing KRIB (Kubernetes Rebar Integrated Bootstrapping)¶
This is about installing KRIB on an existing DRP endpoint. See KRIB Video References for instructions on using and extending KRIB.
13.2.1. Prerequists¶
You need to install the system with a discovery workflow that includes sledgehammer as a minimum. These steps are documented in Quick Start Guide.
Install the DRP command line interface (drpcli) as per Digital Rebar Provision Command Line Interface (CLI)
You also need to install some common utilities: git, curl and jq.
13.2.2. Setup DRP Access¶
We need to make sure we have access to the system via the CLI.
# UPDATE THESE: RS_ENDPOINT is not needed if using localhost export RS_ENDPOINT="[endpoint URL]" # UPDATE THESE: RS_KEY is not needed if using defaults export RS_KEY="[endpoint user:password]" # verify credentials drpcli get info
13.2.3. Setup Packet API Integration¶
If you are using Packet.net as a reference platform. The following steps are specific to that platform.
Make sure you set your information in the exports!
# UPDATE THESE: Packet Project Information for Plugin export PACKET_API_KEY="[packet_api_key]" export PACKET_PROJECT_ID="[packet_project_id]" # download plugin provider (update for version or archtiecture) curl -o packet-ipmi https://s3-us-west-2.amazonaws.com/rebar-catalog/packet-ipmi/v2.4.0-0-02301d35f9f664d6c81d904c92a9c81d3fd41d2c/amd64/linux/packet-ipmi # install plugin provider drpcli plugin_providers upload packet-ipmi from packet-ipmi # configure plugin drpcli plugins create '{ "Name": "packet-ipmi", "Params": { "packet/api-key": "$PACKET_API_KEY", "packet/project-id": "$PACKET_PROJECT_ID" }, "Provider": "packet-ipmi" }' # verify it worked - should return true drpcli plugins show packet-ipmi | jq .Available
Note
The URLs provided for plugin downloads will change overtime for newer versions
13.2.4. Install KRIB Components and Cert Plugin¶
The following steps will install the required plugins and content for KRIB
# download cert plugin provider (installs the plugin autmatically) curl -o certs https://s3-us-west-2.amazonaws.com/rebar-catalog/certs/v2.4.0-0-02301d35f9f664d6c81d904c92a9c81d3fd41d2c/amd64/linux/certs # install plugin provider drpcli plugin_providers upload certs from certs # verify it worked - should return true drpcli plugins show certs | jq .Available # Get code git clone https://gitlab.com/rackn/provision-content cd provision-content/krib # KRIB content install drpcli contents bundle krib.yaml drpcli contents upload krib.yaml
Note
This is maintained with more detail at KRIB Video References.
13.2.5. Create Machines (skip if using Terraform)¶
You do NOT need to create machines if you are using the Terraform integration to build the KRIB cluster! To create machines in Packet without a Terraform, use the following command:
# copy multiple times to create extra machines - names must be unique drpcli machines create '{ "Name": "krib-0", "Params": { "machine-plugin": "packet-ipmi" } }'
13.2.6. Running KRIB¶
Continue to next steps on KRIB Video References.