We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1115042 commit 730a0deCopy full SHA for 730a0de
content/en/docs/advanced-tasks/performance-profiling.md
@@ -26,12 +26,11 @@ A valid server certificate must be created for each component before the Perform
26
Once you have generated a private and public key, this data should be stored in a `TLS Secret`:
27
28
```bash
29
-
30
-$ export TLS_SECRET=my-tls-secret
31
$ export PRIVATE_KEY_FILENAME=private.key # Replace with the name of the file that contains the private key you generated.
32
$ export PUBLIC_KEY_FILENAME=certificate.crt # Replace with the name of the file that contains the public key you generated.
33
34
$ kubectl -n my-namespace create secret tls my-name --cert=$PUBLIC_KEY_FILENAME --key=$PRIVATE_KEY_FILENAME
+```
35
36
### Updating OLM to Use the TLS Secret
37
0 commit comments