Skip to content

Latest commit

 

History

History
52 lines (31 loc) · 1.49 KB

README.md

File metadata and controls

52 lines (31 loc) · 1.49 KB

Armory Logo

Armory CDaaS Examples

This repository contains example deployments and walkthroughs for Armory Continuous Deployments-as-a-Service. CDaaS is a tool for safely deploying artifacts like Docker images and Kubernetes manifests into application environments.

Getting Started

  1. Install:

    Install armory on Mac OS using Homebrew:

    brew tap armory-io/armory
    brew install armory-cli

    To install armory on Linux, run the following:

    curl -sL go.armory.io/get-cli | bash

    The script will install armory and avm. You can use avm (Armory Version Manager) to manage your armory version.

  2. Sign up:

    It's free to try Armory CDaaS:

    armory login

    Confirm the device code in your browser when prompted, sign up for an Armory CDaaS account, then return to this guide.

  3. Connect your cluster:

    CDaaS uses an agent to execute deployments in your Kubernetes cluster. Your cluster's API endpoint does not need to be publicly accessible to use CDaaS. Learn more about CDaaS architecture.

    Run the following command to install an agent in your Kubernetes cluster:

    armory agent create
  4. Deploy:

    The Hello Armory tutorial is a great place to start. Happy deploying!