Files
myorg-assistant/k8s/secret.yaml.example

25 lines
630 B
Plaintext
Raw Permalink Normal View History

2026-02-03 23:50:19 +01:00
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"