Files
lpt-infra/dev/lpt-secrets.yaml
T

21 lines
538 B
YAML

# LPT Application Secrets — TEMPLATE
# DO NOT commit real secrets to git!
#
# Create in the cluster:
# kubectl create secret generic lpt-secrets \
# --from-literal=llm-api-key=<YOUR_LLM_API_KEY> \
# --from-literal=mysql-root-password=<YOUR_MYSQL_ROOT_PASSWORD> \
# --namespace=lpt-dev
---
apiVersion: v1
kind: Secret
metadata:
name: lpt-secrets
namespace: lpt-dev
type: Opaque
data: {}
# Use stringData when applying:
# stringData:
# llm-api-key: "sk-xxxxxxxxxxxxxxxx"
# mysql-root-password: "your-mysql-password"