feat: centralized K8s infra — dev/prod environments

This commit is contained in:
admin
2026-07-26 21:33:02 +08:00
commit 9ebafb97fb
15 changed files with 613 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# 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"