Skip to content

Commit

Permalink
docs: fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
edvald committed Nov 13, 2019
1 parent a4fb418 commit d168392
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/guides/using-helm-charts.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ The `api` module only contains the `garden.yml` file, but configures the base ch
sets its own dependencies (those are not inherited) and specifies its `serviceResource.containerModule`.

In our base chart, we make certain values like `name`, `image.repository` and `image.tag` required (using the
[required](https://helm.sh/docs/developing_charts/#chart-development-tips-and-tricks)
[required](https://helm.sh/docs/howto/charts_tips_and_tricks/)
helper function) in order to enforce correct usage. We recommend enforcing constraints like that, so that mistakes
can be caught quickly.

Expand Down
4 changes: 2 additions & 2 deletions docs/reference/providers/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ The namespace where the secret is stored. If necessary, the secret may be copied

Set to `cert-manager` to configure [cert-manager](https://github.com/jetstack/cert-manager) to manage this
certificate. See our
[cert-manager integration guide](https://docs.garden.io/using-garden/cert-manager-integration) for details.
[cert-manager integration guide](https://docs.garden.io/guides/cert-manager-integration) for details.

| Type | Required |
| -------- | -------- |
Expand Down Expand Up @@ -820,7 +820,7 @@ cert-manager configuration, for creating and managing TLS certificates. See the
[providers](#providers) > [certManager](#providerscertmanager) > install

Automatically install `cert-manager` on initialization. See the
[cert-manager integration guide](https://docs.garden.io/using-garden/cert-manager-integration) for details.
[cert-manager integration guide](https://docs.garden.io/guides/cert-manager-integration) for details.

| Type | Required | Default |
| --------- | -------- | ------- |
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/providers/local-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ The namespace where the secret is stored. If necessary, the secret may be copied

Set to `cert-manager` to configure [cert-manager](https://github.com/jetstack/cert-manager) to manage this
certificate. See our
[cert-manager integration guide](https://docs.garden.io/using-garden/cert-manager-integration) for details.
[cert-manager integration guide](https://docs.garden.io/guides/cert-manager-integration) for details.

| Type | Required |
| -------- | -------- |
Expand Down Expand Up @@ -820,7 +820,7 @@ cert-manager configuration, for creating and managing TLS certificates. See the
[providers](#providers) > [certManager](#providerscertmanager) > install

Automatically install `cert-manager` on initialization. See the
[cert-manager integration guide](https://docs.garden.io/using-garden/cert-manager-integration) for details.
[cert-manager integration guide](https://docs.garden.io/guides/cert-manager-integration) for details.

| Type | Required | Default |
| --------- | -------- | ------- |
Expand Down
4 changes: 2 additions & 2 deletions garden-service/src/plugins/kubernetes/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ const tlsCertificateSchema = joi.object().keys({
dedent`
Set to \`cert-manager\` to configure [cert-manager](https://github.com/jetstack/cert-manager) to manage this
certificate. See our
[cert-manager integration guide](https://docs.garden.io/using-garden/cert-manager-integration) for details.
[cert-manager integration guide](https://docs.garden.io/guides/cert-manager-integration) for details.
`
)
.allow("cert-manager")
Expand Down Expand Up @@ -433,7 +433,7 @@ export const kubernetesConfigBase = providerConfigBaseSchema.keys({
.keys({
install: joi.bool().default(false).description(dedent`
Automatically install \`cert-manager\` on initialization. See the
[cert-manager integration guide](https://docs.garden.io/using-garden/cert-manager-integration) for details.
[cert-manager integration guide](https://docs.garden.io/guides/cert-manager-integration) for details.
`),
email: joi
.string()
Expand Down

0 comments on commit d168392

Please sign in to comment.