Skip to content

Commit

Permalink
docs/helm: fix duplicate ingress tls section
Browse files Browse the repository at this point in the history
Combined the two Ingress sections into one, hopefully in the right
spot this time.
  • Loading branch information
tvoran committed Jan 26, 2022
1 parent 15d0e64 commit f852919
Showing 1 changed file with 5 additions and 17 deletions.
22 changes: 5 additions & 17 deletions website/content/docs/platform/k8s/helm/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -329,13 +329,14 @@ and consider if they're appropriate for your deployment.
number: use-annotation
```

- `tls` (`array: []`) - Configure the TLS portion of the Ingress spec.
- `tls` (`array: []`) - Configures the TLS portion of the [Ingress spec](https://kubernetes.io/docs/concepts/services-networking/ingress/#tls), where `hosts` is a list of the hosts defined in the Common Name of the TLS certificate, and `secretName` is the name of the Secret containing the required TLS files such as certificates and keys.

```yaml
tls:
- secretName: chart-example-tls
hosts:
- chart-example.local
- hosts:
- sslexample.foo.com
- sslexample.bar.com
secretName: testsecret-tls
```

- `hosts` - Values that configure the Ingress host rules.
Expand Down Expand Up @@ -366,19 +367,6 @@ and consider if they're appropriate for your deployment.

- `tls` (`dictionary: {termination: passthrough}`) - TLS config that will be passed directly to the route's TLS config, which can be used to configure other termination methods that terminate TLS at the router.

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

- `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.

```yaml
hosts:
- sslexample.foo.com
- sslexample.bar.com
secretName: testsecret-tls
```

- `authDelegator` - Values that configure the Cluster Role Binding attached to the Vault service account.

- `enabled` (`boolean: true`) - When set to `true`, a Cluster Role Binding will be bound to the Vault service account. This Cluster Role Binding has the necessary privileges for Vault to use the [Kubernetes Auth Method](/docs/auth/kubernetes).
Expand Down

0 comments on commit f852919

Please sign in to comment.