Admiral

Applications & environments

Create a source, an application, and dev + prod environments

Now you create the resources Admiral deploys into: a place to fetch code from, an application to own it, and the two environments you'll deploy and promote between.

1. Create a source

A Source is where bytes live. For the walkthrough we point at a public chart repository, so no credentials are needed.

# TODO: confirm flags. Public source used so no Credential is required.
admiral source create \
  --name podinfo \
  --type helm \
  --url https://stefanprodan.github.io/podinfo
  1. Open Sources, choose New source.
  2. Type helm, URL of the public chart repo.
  3. Save.

2. Create an application

admiral app create --name demo

Open Applications, choose New application, name it demo.

3. Create dev and prod environments

The same definition added to two environments becomes two independent Components, each with its own values.

admiral env create --app demo --name dev
admiral env create --app demo --name prod

Inside the demo application, add two environments: dev and prod.

Next

On this page