Skip to content

Commit

Permalink
Merge branch 'basecamp:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
paganotoni authored Sep 27, 2024
2 parents 1ae8dcf + 347ce2c commit 92b2278
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/commands/redeploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ title: Redeploy

# kamal redeploy

Deploy your app, but skip bootstrapping servers, starting Traefik, pruning, and registry login.
Deploy your app, but skip bootstrapping servers, starting kamal-proxy, pruning, and registry login.

You must run [`kamal deploy`](../deploy) at least once first.
2 changes: 1 addition & 1 deletion docs/commands/remove.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ title: Remove

# kamal remove

This will remove app, Traefik and accessory containers and log out of the docker registry.
This will remove app, kamal-proxy and accessory containers and log out of the docker registry.

It will prompt for confirmation unless you add the `-y` option.
4 changes: 2 additions & 2 deletions docs/configuration/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
Kamal uses dotenv to automatically load environment variables set in the `.kamal/secrets` file.

If you are using destinations, secrets will instead be read from `.kamal/secrets-<DESTINATION>` if it exists.
If you are using destinations, secrets will instead be read from `.kamal/secrets.<DESTINATION>` if it exists.

Common secrets across all destinations can be set in `.kamal/secrets-common`.

Expand All @@ -33,7 +33,7 @@ KAMAL_REGISTRY_PASSWORD=$KAMAL_REGISTRY_PASSWORD
RAILS_MASTER_KEY=$(cat config/master.key)
```
You can also use [secret helpers](../commands/secrets) for some common password managers.
You can also use [secret helpers](../../commands/secrets) for some common password managers.
```
SECRETS=$(kamal secrets fetch ...)
Expand Down
6 changes: 3 additions & 3 deletions docs/upgrading/secrets-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ title: Secrets changes

# Kamal 2: Secrets changes

Secrets have moved from `.env`/`.env.rb` to `.kamal/secrets.`
Secrets have moved from `.env`/`.env.rb` to `.kamal/secrets`.

If you are using destinations, secrets will be read from `.kamal/secrets-<DESTINATION>` first or `.kamal/secrets` if it is not found.
If you are using destinations, secrets will be read from `.kamal/secrets.<DESTINATION>` first or `.kamal/secrets` if it is not found.

## [Interpolating secrets](#interpolating-secrets)

Expand All @@ -23,7 +23,7 @@ SECRET_FROM_ENV=$SECRET_FROM_ENV
SECRET_FROM_COMMAND=$(op read ...)
```

See [here](../configuration/environment-variables#using-kamal-secrets) for more details
See [here](../configuration/environment-variables#secrets) for more details

## [Environment variables in deploy.yml](#environment-variables-in-deployyml)

Expand Down

0 comments on commit 92b2278

Please sign in to comment.