25 lines
572 B
Bash
25 lines
572 B
Bash
# AKS配置
|
|
AKS_SUBSCRIPTION_ID=your-subscription-id-here
|
|
AKS_RESOURCE_GROUP=your-resource-group-here
|
|
AKS_CLUSTER_NAME=your-aks-cluster-name-here
|
|
AKS_DEFAULT_NAMESPACE=default
|
|
|
|
# 容器镜像仓库配置
|
|
REGISTRY_URL=your-registry.azurecr.io
|
|
REGISTRY_USERNAME=your-registry-username
|
|
REGISTRY_PASSWORD=your-registry-password
|
|
|
|
# 功能开关
|
|
ENABLE_QUOTA_MANAGEMENT=true
|
|
ENABLE_LIFECYCLE_MANAGEMENT=true
|
|
ENABLE_RETRY_MECHANISM=true
|
|
ENABLE_METERING=true
|
|
|
|
# 生命周期管理配置
|
|
CLEANUP_INTERVAL=60
|
|
|
|
# Web服务配置
|
|
SERVER_HOST=0.0.0.0
|
|
SERVER_PORT=8000
|
|
SERVER_WORKERS=1
|