18 lines
406 B
Plaintext
18 lines
406 B
Plaintext
# 环境变量配置文件模板
|
|
# 复制此文件为 .env 并填入实际值
|
|
|
|
# Harbor 仓库配置
|
|
HARBOR_REGISTRY=harbor.example.com
|
|
HARBOR_USERNAME=your-username
|
|
HARBOR_PASSWORD=your-password
|
|
|
|
# 镜像配置
|
|
NGINX_IMAGE_TAG=latest
|
|
|
|
# Kubernetes 配置
|
|
NAMESPACE=default
|
|
DEPLOYMENT_FILE=./nginx-deployment.yaml
|
|
|
|
# 可选配置
|
|
# KUBECONFIG=/path/to/kubeconfig # 如果不使用默认的 kubectl 配置
|