Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Fix TLS secret name ConfigMap update example (kserve#260)
#### Motivation The script snippet in our TLS docs for creating a configmap with the TLS secret name parameter included incorrect yaml which would not result in TLS being enabled. It should be: ```yaml data: config.yaml: | tls: secretName: ${SECRET_NAME} ``` instead of ```yaml data: config.yaml: | tls.secretName: ${SECRET_NAME} ``` #### Modification - Fix the config yaml - Change `kubectl apply` to `kubectl create` to avoid overwriting existing config - Add `> ca.crt` to the cert retrieval command - Replace `oc` with `kubectl` in Certificate CR example #### Result Correct docs. Signed-off-by: Nick Hill <[email protected]> Signed-off-by: Nick Hill <[email protected]>
- Loading branch information