Skip to content

Instantly share code, notes, and snippets.

@xuanthulabnet
Created May 13, 2020 11:08
Show Gist options
  • Select an option

  • Save xuanthulabnet/fc4fcbda135e01fdd6dcc63216e59f28 to your computer and use it in GitHub Desktop.

Select an option

Save xuanthulabnet/fc4fcbda135e01fdd6dcc63216e59f28 to your computer and use it in GitHub Desktop.
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