Rename environments for consistency

- dev is local laptop
- unstable (or sandbox) is latest cut of main (or for experiments)
- staging is stable tagged releases
This commit is contained in:
Seamus Johnston 2022-08-18 14:54:14 -05:00
parent e45da58a4a
commit 8ec4d40b6a
No known key found for this signature in database
GPG key ID: 2F21225985069105
5 changed files with 18 additions and 19 deletions

View file

@ -35,7 +35,7 @@ Where `credentials-<ENVIRONMENT>.json` looks like:
}
```
You can see the current environment with `cf env <APP>`, for example `cf env getgov-dev`.
You can see the current environment with `cf env <APP>`, for example `cf env getgov-unstable`.
The command `cups` stands for [create user provided service](https://docs.cloudfoundry.org/devguide/services/user-provided.html). User provided services are the way currently recommended by Cloud.gov for deploying secrets. The user provided service is bound to the application in `manifest-<ENVIRONMENT>.json`.
@ -45,7 +45,7 @@ Example:
```bash
cf uups getgov-credentials -p credentials-unstable.json
cf restage getgov-dev --strategy rolling
cf restage getgov-unstable --strategy rolling
```
Non-secret environment variables can be declared in `manifest-<ENVIRONMENT>.json` directly.