-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
503 additions
and
10 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
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,14 @@ | ||
name: lando-mariadb-1010 | ||
services: | ||
defaults: | ||
type: mariadb:10.10 | ||
patch: | ||
type: mariadb:10.10.7 | ||
proxy: | ||
defaults: | ||
- hostname: db.lndo.site | ||
port: 3306 | ||
# This is important because it lets lando know to test against the plugin in this repo | ||
# DO NOT REMOVE THIS! | ||
plugins: | ||
"@lando/mariadb": ../.. |
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,44 @@ | ||
MariaDB Example | ||
=============== | ||
|
||
This example exists primarily to test the following documentation: | ||
|
||
* [MariaDB Service](https://docs.devwithlando.io/tutorials/mariadb.html) | ||
|
||
Start up tests | ||
-------------- | ||
|
||
Run the following commands to get up and running with this example. | ||
|
||
```bash | ||
# Should start up successfully | ||
lando poweroff | ||
lando start | ||
``` | ||
|
||
Verification commands | ||
--------------------- | ||
|
||
Run the following commands to validate things are rolling as they should. | ||
|
||
```bash | ||
# Should use 10.10.7 as the default version | ||
lando ssh -s defaults -c "mysql -V | grep 10.10.7" | ||
|
||
# Should use the patch version when set by the user | ||
lando ssh -s patch -c "mysql -V | grep 10.10.7" | ||
|
||
# Should use the correct default user pass db | ||
lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" | ||
``` | ||
|
||
Destroy tests | ||
------------- | ||
|
||
Run the following commands to trash this app like nothing ever happened. | ||
|
||
```bash | ||
# Should be destroyed with success | ||
lando destroy -y | ||
lando poweroff | ||
``` |
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,14 @@ | ||
name: lando-mariadb-1011 | ||
services: | ||
defaults: | ||
type: mariadb:10.11 | ||
patch: | ||
type: mariadb:10.11.7 | ||
proxy: | ||
defaults: | ||
- hostname: db.lndo.site | ||
port: 3306 | ||
# This is important because it lets lando know to test against the plugin in this repo | ||
# DO NOT REMOVE THIS! | ||
plugins: | ||
"@lando/mariadb": ../.. |
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,44 @@ | ||
MariaDB Example | ||
=============== | ||
|
||
This example exists primarily to test the following documentation: | ||
|
||
* [MariaDB Service](https://docs.devwithlando.io/tutorials/mariadb.html) | ||
|
||
Start up tests | ||
-------------- | ||
|
||
Run the following commands to get up and running with this example. | ||
|
||
```bash | ||
# Should start up successfully | ||
lando poweroff | ||
lando start | ||
``` | ||
|
||
Verification commands | ||
--------------------- | ||
|
||
Run the following commands to validate things are rolling as they should. | ||
|
||
```bash | ||
# Should use 10.11.7 as the default version | ||
lando ssh -s defaults -c "mysql -V | grep 10.11.7" | ||
|
||
# Should use the patch version when set by the user | ||
lando ssh -s patch -c "mysql -V | grep 10.11.7" | ||
|
||
# Should use the correct default user pass db | ||
lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" | ||
``` | ||
|
||
Destroy tests | ||
------------- | ||
|
||
Run the following commands to trash this app like nothing ever happened. | ||
|
||
```bash | ||
# Should be destroyed with success | ||
lando destroy -y | ||
lando poweroff | ||
``` |
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,14 @@ | ||
name: lando-mariadb-107 | ||
services: | ||
defaults: | ||
type: mariadb:10.7 | ||
patch: | ||
type: mariadb:10.7.8 | ||
proxy: | ||
defaults: | ||
- hostname: db.lndo.site | ||
port: 3306 | ||
# This is important because it lets lando know to test against the plugin in this repo | ||
# DO NOT REMOVE THIS! | ||
plugins: | ||
"@lando/mariadb": ../.. |
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,44 @@ | ||
MariaDB Example | ||
=============== | ||
|
||
This example exists primarily to test the following documentation: | ||
|
||
* [MariaDB Service](https://docs.devwithlando.io/tutorials/mariadb.html) | ||
|
||
Start up tests | ||
-------------- | ||
|
||
Run the following commands to get up and running with this example. | ||
|
||
```bash | ||
# Should start up successfully | ||
lando poweroff | ||
lando start | ||
``` | ||
|
||
Verification commands | ||
--------------------- | ||
|
||
Run the following commands to validate things are rolling as they should. | ||
|
||
```bash | ||
# Should use 10.7.8 as the default version | ||
lando ssh -s defaults -c "mysql -V | grep 10.7.8" | ||
|
||
# Should use the patch version when set by the user | ||
lando ssh -s patch -c "mysql -V | grep 10.7.8" | ||
|
||
# Should use the correct default user pass db | ||
lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" | ||
``` | ||
|
||
Destroy tests | ||
------------- | ||
|
||
Run the following commands to trash this app like nothing ever happened. | ||
|
||
```bash | ||
# Should be destroyed with success | ||
lando destroy -y | ||
lando poweroff | ||
``` |
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,14 @@ | ||
name: lando-mariadb-108 | ||
services: | ||
defaults: | ||
type: mariadb:10.8 | ||
patch: | ||
type: mariadb:10.8.8 | ||
proxy: | ||
defaults: | ||
- hostname: db.lndo.site | ||
port: 3306 | ||
# This is important because it lets lando know to test against the plugin in this repo | ||
# DO NOT REMOVE THIS! | ||
plugins: | ||
"@lando/mariadb": ../.. |
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,44 @@ | ||
MariaDB Example | ||
=============== | ||
|
||
This example exists primarily to test the following documentation: | ||
|
||
* [MariaDB Service](https://docs.devwithlando.io/tutorials/mariadb.html) | ||
|
||
Start up tests | ||
-------------- | ||
|
||
Run the following commands to get up and running with this example. | ||
|
||
```bash | ||
# Should start up successfully | ||
lando poweroff | ||
lando start | ||
``` | ||
|
||
Verification commands | ||
--------------------- | ||
|
||
Run the following commands to validate things are rolling as they should. | ||
|
||
```bash | ||
# Should use 10.8.8 as the default version | ||
lando ssh -s defaults -c "mysql -V | grep 10.8.8" | ||
|
||
# Should use the patch version when set by the user | ||
lando ssh -s patch -c "mysql -V | grep 10.8.8" | ||
|
||
# Should use the correct default user pass db | ||
lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" | ||
``` | ||
|
||
Destroy tests | ||
------------- | ||
|
||
Run the following commands to trash this app like nothing ever happened. | ||
|
||
```bash | ||
# Should be destroyed with success | ||
lando destroy -y | ||
lando poweroff | ||
``` |
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,14 @@ | ||
name: lando-mariadb-109 | ||
services: | ||
defaults: | ||
type: mariadb:10.9 | ||
patch: | ||
type: mariadb:10.9.8 | ||
proxy: | ||
defaults: | ||
- hostname: db.lndo.site | ||
port: 3306 | ||
# This is important because it lets lando know to test against the plugin in this repo | ||
# DO NOT REMOVE THIS! | ||
plugins: | ||
"@lando/mariadb": ../.. |
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,44 @@ | ||
MariaDB Example | ||
=============== | ||
|
||
This example exists primarily to test the following documentation: | ||
|
||
* [MariaDB Service](https://docs.devwithlando.io/tutorials/mariadb.html) | ||
|
||
Start up tests | ||
-------------- | ||
|
||
Run the following commands to get up and running with this example. | ||
|
||
```bash | ||
# Should start up successfully | ||
lando poweroff | ||
lando start | ||
``` | ||
|
||
Verification commands | ||
--------------------- | ||
|
||
Run the following commands to validate things are rolling as they should. | ||
|
||
```bash | ||
# Should use 10.9.8 as the default version | ||
lando ssh -s defaults -c "mysql -V | grep 10.9.8" | ||
|
||
# Should use the patch version when set by the user | ||
lando ssh -s patch -c "mysql -V | grep 10.9.8" | ||
|
||
# Should use the correct default user pass db | ||
lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" | ||
``` | ||
|
||
Destroy tests | ||
------------- | ||
|
||
Run the following commands to trash this app like nothing ever happened. | ||
|
||
```bash | ||
# Should be destroyed with success | ||
lando destroy -y | ||
lando poweroff | ||
``` |
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,14 @@ | ||
name: lando-mariadb-110 | ||
services: | ||
defaults: | ||
type: mariadb:11.0 | ||
patch: | ||
type: mariadb:11.0.5 | ||
proxy: | ||
defaults: | ||
- hostname: db.lndo.site | ||
port: 3306 | ||
# This is important because it lets lando know to test against the plugin in this repo | ||
# DO NOT REMOVE THIS! | ||
plugins: | ||
"@lando/mariadb": ../.. |
Oops, something went wrong.