-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix certs test and assess impact of upsteam.appMount removal
- Loading branch information
Showing
3 changed files
with
38 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Mounts Example | ||
|
||
This example exists primarily to test the following documentation: | ||
|
||
* [Lando 4 Service Mounts](TBD) | ||
|
||
See the [Landofiles](https://docs.lando.dev/config/lando.html) in this directory for the exact magicks. | ||
|
||
## Start up tests | ||
|
||
```bash | ||
# Should start successfully | ||
lando poweroff | ||
lando start | ||
``` | ||
|
||
## Verification commands | ||
|
||
Run the following commands to verify things work as expected | ||
|
||
```bash | ||
# Should test something | ||
skip | ||
``` | ||
|
||
## Destroy tests | ||
|
||
```bash | ||
# Should destroy and poweroff | ||
lando destroy -y | ||
lando poweroff | ||
``` |