Skip to content

Commit

Permalink
Wording changes to PR#1473 (#1474)
Browse files Browse the repository at this point in the history
  • Loading branch information
allanrogerr authored Feb 28, 2023
1 parent ce78ffb commit 4826069
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/operator-tls.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To configure MinIO Operator to trust custom certificates, create a secret with t
kubectl create secret generic my-custom-tls -n minio-operator --from-file=path/to/public.crt
```

then add the following volume to the `minio-operator` deployment under .spec.template.spec
Then, add the following volume to the `minio-operator` deployment under `.spec.template.spec`,

```yaml
volumes:
Expand All @@ -21,10 +21,10 @@ then add the following volume to the `minio-operator` deployment under .spec.tem
name: my-custom-tls
```
and for the `.spec.temaplte.spec.container[0]`
and the following under `.spec.template.spec.container[0]`

```yaml
volumeMounts:
- mountPath: /tmp/certs
name: tls-certificates
```
```

0 comments on commit 4826069

Please sign in to comment.