Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update the vault-helm ingress config docs #8881

Merged
merged 4 commits into from
Apr 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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