diff --git a/README.md b/README.md index 3da53031f6..6d53207e63 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ You can find the Garden documentation at [https://docs.garden.io](https://docs.g Overview: - [Basics](https://docs.garden.io/basics), for installation instructions, our quick start guide, and an overview of the main concepts around Garden. - [Using Garden](https://docs.garden.io/using-garden), for features and usage, Garden configuration files, usage with remote clusters, and setting up hot reload. -- [Example Projects](https://docs.garden.io/examples) contains guides based on some of the [examples](https://github.com/garden-io/garden/tree/v0.9.0/examples). +- [Example Projects](https://docs.garden.io/examples) contains guides based on some of the [examples](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples). - [Reference](https://docs.garden.io/reference), for the glossary, commands reference, configuration files reference, and template strings reference. - [FAQs](https://docs.garden.io/faqs). @@ -44,7 +44,7 @@ Overview: ## Examples -There are many examples of how to use Garden in a myriad of different ways in the [examples](https://github.com/garden-io/garden/tree/v0.9.0/examples) folder of our repository. +There are many examples of how to use Garden in a myriad of different ways in the [examples](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples) folder of our repository. For written guides based on some of these examples, check out the [examples section](https://docs.garden.io/examples) of our documentation. diff --git a/docs/examples/hello-world.md b/docs/examples/hello-world.md index 6408e7ea2c..2163862d22 100644 --- a/docs/examples/hello-world.md +++ b/docs/examples/hello-world.md @@ -6,9 +6,9 @@ In this example, we'll have a practical look at the main characteristics of a Ga - Ports, endpoints, and health check settings - Tests -This project contains four configuration files. [This one](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world/garden.yml) for project-wide settings, and three separate ones for each of the modules: [`hello-container`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world/services/hello-container/garden.yml), [`hello-function`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world/services/hello-function/garden.yml), and [`hello-npm-package`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world/libraries/hello-npm-package/garden.yml). +This project contains four configuration files. [This one](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world/garden.yml) for project-wide settings, and three separate ones for each of the modules: [`hello-container`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world/services/hello-container/garden.yml), [`hello-function`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world/services/hello-function/garden.yml), and [`hello-npm-package`](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world/libraries/hello-npm-package/garden.yml). -_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/hello-world)._ +_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/hello-world)._ # Configuring dependencies diff --git a/docs/examples/remote-sources.md b/docs/examples/remote-sources.md index b660d22f7d..f81e80b130 100644 --- a/docs/examples/remote-sources.md +++ b/docs/examples/remote-sources.md @@ -10,11 +10,11 @@ Important concepts: > Remote _module_: The remote source code for a single Garden module. In this case, the `garden.yml` config file is stored in the main project repository while the module code itself is in the remote repository. -_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/remote-sources](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/remote-sources)._ +_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/remote-sources](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/remote-sources)._ ## About -This project is the same as the [vote example](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/vote)—except that in this case the services live in their own repositories. The repositories are: +This project is the same as the [vote example](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/vote)—except that in this case the services live in their own repositories. The repositories are: * [Database services](https://github.com/garden-io/garden-example-remote-sources-db-services) (contains the Postgres and Redis services) * [Web services](https://github.com/garden-io/garden-example-remote-sources-web-services) (contains the Python Vote web service and the Node.js Result web service) diff --git a/docs/examples/simple-project.md b/docs/examples/simple-project.md index 339d4a5d59..4f18a9683f 100644 --- a/docs/examples/simple-project.md +++ b/docs/examples/simple-project.md @@ -17,7 +17,7 @@ This tutorial assumes that you already have a running [installation of Garden](. ## Clone the example repo -The code for this tutorial can be found in our Github repository under the [examples directory](https://github.com/garden-io/garden/tree/v0.9.0/examples). We'll use the [simple-project-start](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/simple-project-start/) example and work our way from there. The final version is under [simple-project](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/simple-project). +The code for this tutorial can be found in our Github repository under the [examples directory](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples). We'll use the [simple-project-start](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/simple-project-start/) example and work our way from there. The final version is under [simple-project](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/simple-project). First, let's clone the examples repo, change into the directory, and take a look inside: diff --git a/docs/examples/tls-project.md b/docs/examples/tls-project.md index ad46e3a125..8346858956 100644 --- a/docs/examples/tls-project.md +++ b/docs/examples/tls-project.md @@ -5,7 +5,7 @@ This project shows how you can configure a TLS certificate to use for local deve For the example to work you need to configure a local certificate authority (CA) on your computer for development. We'll use [mkcert](https://github.com/FiloSottile/mkcert) for this purpose. -_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/local-tls](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/local-tls)._ +_Note: The source code for this project can be found at: [https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/local-tls](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/local-tls)._ ## Setup diff --git a/examples/remote-sources/README.md b/examples/remote-sources/README.md index 6fb7d86163..058128b674 100644 --- a/examples/remote-sources/README.md +++ b/examples/remote-sources/README.md @@ -10,7 +10,7 @@ Important concepts: ## About -This project is the same as the [vote example](https://github.com/garden-io/garden/tree/v0.9.0-docfix.1/examples/vote)—except that in this case the services live in their own repositories. The repositories are: +This project is the same as the [vote example](https://github.com/garden-io/garden/tree/v0.9.0-docfix.2/examples/vote)—except that in this case the services live in their own repositories. The repositories are: * [Database services](https://github.com/garden-io/garden-example-remote-sources-db-services) (contains the Postgres and Redis services) * [Web services](https://github.com/garden-io/garden-example-remote-sources-web-services) (contains the Python Vote web service and the Node.js Result web service)