14 lines
528 B
YAML
14 lines
528 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: knck-secrets
|
|
type: Opaque
|
|
data:
|
|
# Replace these values with your base64 encoded actual values
|
|
# Example: echo -n "your-actual-value" | base64
|
|
smtp-host: REPLACE_WITH_YOUR_BASE64_ENCODED_SMTP_HOST
|
|
smtp-port: REPLACE_WITH_YOUR_BASE64_ENCODED_SMTP_PORT
|
|
smtp-user: REPLACE_WITH_YOUR_BASE64_ENCODED_SMTP_USER
|
|
smtp-pass: REPLACE_WITH_YOUR_BASE64_ENCODED_SMTP_PASSWORD
|
|
smtp-from: REPLACE_WITH_YOUR_BASE64_ENCODED_SMTP_FROM
|
|
smtp-to: REPLACE_WITH_YOUR_BASE64_ENCODED_SMTP_TO |