Skip to content

Commit

Permalink
chore: add license notices (#1086)
Browse files Browse the repository at this point in the history
Closes #983
  • Loading branch information
abernix authored May 18, 2022
1 parent fc7a96e commit 56bcd77
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/source/containerization/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { Link } from 'gatsby';

The default behaviour of the router images is suitable for a quickstart or development scenario. You'll need to know how to customize this default behaviour if you wish to do any of the following.

> Note: The Apollo Router is made available under the Elastic License v2.0 (ELv2). Read [our licensing page](https://www.apollographql.com/docs/resources/elastic-license-v2-faq/) for more details.
Note: The [docker documentation](https://docs.docker.com/engine/reference/run/) for the run command may be helpful when reading through the examples.

Note: The exact image version to use is your choice depending on which release you wish to use. In the following examples, replace `<image version>` with your chosen version. e.g.: `v0.9.1`
Expand Down
2 changes: 2 additions & 0 deletions docs/source/containerization/kubernetes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { Link } from 'gatsby';

## Sample Kubernetes Configuration

> Note: The Apollo Router is made available under the Elastic License v2.0 (ELv2). This applies to its source code and all distributions, including versions installed via Helm charts. Read [our licensing page](https://www.apollographql.com/docs/resources/elastic-license-v2-faq/) for more details.
### Helm

[Helm](https://helm.sh) is the package manager for kubernetes.
Expand Down
3 changes: 3 additions & 0 deletions docs/source/containerization/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Each release of the Apollo Router includes both default and debug images. Each i

Here's a basic example of running a router image with Docker (make sure to replace `<image version>` with whichever version you want to use, such as `v0.1.0-preview.1`):

> Note: The Apollo Router is made available under the Elastic License v2.0 (ELv2). This applies to its source code and all distributions, including versions embedded within a Docker image. Read [our licensing page](https://www.apollographql.com/docs/resources/elastic-license-v2-faq/) for more details.

```bash title="Docker"
docker run -p 4000:4000 \
--env APOLLO_GRAPH_REF="<your graph>" \
Expand Down
2 changes: 2 additions & 0 deletions docs/source/customizations/native.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Your federated graph might have specific requirements that aren't supported by t

In these cases, you can create custom plugins for the Apollo Router.

> Note: The Apollo Router is made available under the Elastic License v2.0 (ELv2). This applies to its source code and all distributions, including any embedded usage. Read [our licensing page](https://www.apollographql.com/docs/resources/elastic-license-v2-faq/) for more details.
## Planning a plugin

When designing a new plugin, you first want to determine which of the Apollo Router's **services** the plugin should hook into to achieve its use case.
Expand Down
2 changes: 2 additions & 0 deletions docs/source/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Hello! This tutorial walks you through installing the Apollo Router and running

### Download options

> Note: The Apollo Router is made available under the Elastic License v2.0 (ELv2). Read [our licensing page](https://www.apollographql.com/docs/resources/elastic-license-v2-faq/) for more details.
#### Automatic download (Linux, OSX, WSL)

If you have a bash-compatible terminal, you can download the latest version of the Apollo Router directly to your current directory with the following command:
Expand Down
2 changes: 2 additions & 0 deletions examples/embedded/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

It is possible to run the router outside the default bundled web server (Axum).

> Note: The Apollo Router is made available under the Elastic License v2.0 (ELv2). This applies to its source code and all distributions, including any embedded usage. Read [our licensing page](https://www.apollographql.com/docs/resources/elastic-license-v2-faq/) for more details.
## Reasons to avoid this

* Router APIs are not stable. You will effectively be making a fork of the Router.
Expand Down

0 comments on commit 56bcd77

Please sign in to comment.