Created
May 13, 2020 11:08
-
-
Save xuanthulabnet/fc4fcbda135e01fdd6dcc63216e59f28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: Secret | |
| metadata: | |
| name: ssl_domain1 | |
| namespace: your-namespace | |
| type: Opaque | |
| data: | |
| tls.crt: LS0tLS1CRUdJTiBDRVJUSU ... # public key | |
| tls.key: LS0tLS1CRUdJTiBSU0EgU ... # private key | |
| --- | |
| apiVersion: v1 | |
| kind: Secret | |
| metadata: | |
| name: ssl_domain2 | |
| namespace: your-namespace | |
| type: Opaque | |
| data: | |
| tls.crt: LS0tLS1CRUdJTiBDRVJUSU ... # public key | |
| tls.key: LS0tLS1CRUdJTiBSU0EgU ... # private key | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment