Skip to content

Commit

Permalink
Update the vault-helm ingress config docs (#8881)
Browse files Browse the repository at this point in the history
The chart defines the `backend` stanza, so the `path` list should
just be path strings. More typos: `tls.hosts` is a list, not a
string.
  • Loading branch information
tvoran authored Apr 29, 2020
1 parent 7866eed commit 14da940
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions website/pages/docs/platform/k8s/helm/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -115,20 +115,19 @@ and consider if they're appropriate for your deployment.

- `host` (`string: required`): Name of the host to use for Ingress.

- `paths` (`string: required`): This value defines the types of host rules for the Ingress service.
- `paths` (`array: []`): A list of paths that will be directed to the Vault service. At least one path is required.

```yaml
paths:
- backend:
serviceName: service2
servicePort: 80
- /
- /vault
```

* `tls` - Values that configure the Ingress TLS rules.

- `hosts` (`string: null)`: Name of the hosts defined in the Common Name of the TLS Certificate. This should be formated as a multi-line string.
- `hosts` (`array: []`): List of the hosts defined in the Common Name of the TLS Certificate.

- `secretName` (`string: null)`: Name of the secret containing the required TLS files such as certificates and keys.
- `secretName` (`string: null`): Name of the secret containing the required TLS files such as certificates and keys.

```yaml
hosts:
Expand Down

0 comments on commit 14da940

Please # to comment.