A CLI for managing declarative infrastructure.
Go to file
Matt McEuen 86f3b9ffc7 Write cli errors to stderr
This explicitly writes errors to stderr, for the benefit of the
document plugin subcommand.  This is needed so that errors are displayed
to end users of kustomize, and can be used to debug manifest issues.
When sent to stdout, the error message gets swallowed/hidden by kustomize.

Change-Id: I49b668e5e71fbe4662fe3aec7bad4ebccadebd64
2020-05-11 14:02:33 -05:00
.github Add SECURITY.md 2020-02-20 16:57:57 -06:00
certs Adding the ability to inject certificate authorities into docker image 2020-04-24 15:06:11 -05:00
cmd Merge "Add pluralized aliases to config get commands" 2020-05-11 15:39:31 +00:00
docs Update developer guide for deployment with proxy 2020-04-28 11:08:18 -05:00
manifests Rename gating test site 2020-04-29 17:32:40 +04:00
pkg Merge "Make remote parameters configurable" 2020-05-08 22:01:18 +00:00
playbooks Merge "Reusing apache-server instead of httpd" 2020-05-11 15:39:30 +00:00
roles Merge "Fix image push zuul job" 2020-05-11 16:14:11 +00:00
testdata/k8s Refactored airshipctl config 2020-04-22 19:26:07 -07:00
tests/ansible Reusing apache-server instead of httpd 2020-05-01 03:17:02 +00:00
testutil Encoding secret data in airshipctl config files 2020-05-08 15:09:17 +00:00
tools [#112] Add doc pull in deployment scripts 2020-04-30 15:11:44 -07:00
zuul.d Merge "Replace venv with tox for documentation builds" 2020-05-08 16:50:03 +00:00
.gitignore Replace venv with tox for documentation builds 2020-05-08 15:47:41 +00:00
.gitreview Gerrit: Add .gitreview file 2019-06-25 08:11:57 -05:00
.golangci.yaml Remove deprecated interfacer linter 2020-04-30 09:33:31 -05:00
CONTRIBUTING.md [#39] Add Zuul job for GitHub Issues integration 2020-03-02 09:49:27 -06:00
Dockerfile Adding the ability to inject certificate authorities into docker image 2020-04-24 15:06:11 -05:00
go.mod Skip variables substitution in clusterctl integration 2020-05-06 18:13:45 +00:00
go.sum Skip variables substitution in clusterctl integration 2020-05-06 18:13:45 +00:00
LICENSE Add LICENSE 2019-10-19 14:16:05 -05:00
main.go Write cli errors to stderr 2020-05-11 14:02:33 -05:00
Makefile Replace venv with tox for documentation builds 2020-05-08 15:47:41 +00:00
README.md [#37] Change issue tracker info to GitHub Issues 2020-02-12 11:13:14 -06:00
tox.ini Replace venv with tox for documentation builds 2020-05-08 15:47:41 +00:00
Vagrantfile [#32]: scripts for local run playbooks 2020-02-28 17:24:32 -08:00

airshipctl

What is airshipctl

The airshipctl project is a CLI tool and Golang library for declarative management of infrastructure and software.

The goal for the project is to provide a seamless experience to operators wishing to leverage the best of breed open source options such as the Cluster API, Metal3-io, Kustomize, Kubeadm, and Argo -- into a straight forward and easily approachable tool.

This project is the heart of the effort to produce Airship 2.0, which has three main evolutions from 1.0:

  • Expand our use of entrenched upstream projects.
  • Embrace Kubernetes Custom Resource Definitions (CRD) Everything becomes an Object in Kubernetes.
  • Make the Airship control plane ephemeral.

To learn more about the Airship 2.0 evolution, please check out the Airship Blog Series.

Contributing

This project is under heavy active development to reach an alpha state.

New developers should read the contributing guide as well as the developer guide in order to get started.

Architecture

The airshipctl tool is designed to work against declarative infrastructure housed in source control and manage the lifecycle of a site.

architecture diagram

Example Usage

In a nutshell, users of airshipctl should be able to do the following:

  1. Create an airshipctl Airship Configuration for their site - sort of like a kubeconfig file.
  2. Create a set of declarative documents representing the infrastructure (baremetal, cloud) and software.
  3. Run airshipctl document pull to clone the document repositories in your Airship Configuration.
  4. When deploying against baremetal infrastructure, run airshipctl bootstrap isogen to generate a self-contained ISO that can be used to boot the first host in the cluster into an ephemeral Kubernetes node.
  5. When deploying against baremetal infrastructure, run airshipctl bootstrap remotedirect to remotely provision the first machine in the cluster using the generated ISO, providing an ephemeral Kubernetes instance that airshipctl can communicate with for subsequent steps. This ephemeral host provides a foothold in the target environment so we can follow the standard cluster-api bootstrap flow.
  6. Run airshipctl cluster initinfra --clustertype=ephemeral to bootstrap the new ephemeral cluster with enough of the chosen cluster-api provider components to provision the target cluster.
  7. Run airshipctl clusterctl to use the ephemeral Kubernetes host to provision at least one node of the target cluster using the cluster-api bootstrap flow.
  8. Run airshipctl cluster initinfra --clustertype=target to bootstrap the new target cluster with any remaining infrastructure necessary to begin running more complex workflows such as Argo.
  9. Run airshipctl workflow submit sitemanage to run the out of the box sitemanage workflow, which will leverage Argo to handle bootstrapping the remaining infrastructure as well as deploying and/or updating software.

As users evolve their sites declaration, whether adding additional infrastructure, or software declarations, they can re-run airshipctl workflow submit sitemanage to introduce those changes to the site.

Project Resources