25 lines
630 B
Plaintext
25 lines
630 B
Plaintext
|
|
apiVersion: v1
|
||
|
|
kind: Secret
|
||
|
|
metadata:
|
||
|
|
name: myorg-assistant-secret
|
||
|
|
namespace: default
|
||
|
|
type: Opaque
|
||
|
|
stringData:
|
||
|
|
# Discord Bot Token
|
||
|
|
DISCORD_BOT_TOKEN: "your-discord-bot-token-here"
|
||
|
|
DISCORD_CHANNEL_ID: "your-discord-channel-id-here"
|
||
|
|
|
||
|
|
# LiteLLM API Key
|
||
|
|
LITELLM_API_KEY: "your-litellm-api-key-here"
|
||
|
|
|
||
|
|
# Git Credentials
|
||
|
|
GIT_REPO_URL: "https://github.com/yourusername/myorg.git"
|
||
|
|
GIT_USERNAME: "your-github-username"
|
||
|
|
GIT_TOKEN: "your-github-token-here"
|
||
|
|
|
||
|
|
# Web Interface Secret Key
|
||
|
|
WEB_SECRET_KEY: "your-secret-key-here"
|
||
|
|
|
||
|
|
# Optional: Web Password for basic auth
|
||
|
|
WEB_PASSWORD: "your-web-password-here"
|