feat: centralized K8s infra — dev/prod environments
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user