概括
应该通过..data
符号链接还是通过正常路径访问 K8s 配置映射?
细节
我们通过以下方式将 configmap 附加到 pod
...
volumeMounts:
- mountPath: /var/opt/app_configs
name: app-config
readOnly: true
...
volumes:
- name: app-config
configMap:
name: app-kubernetes-configmap
然后,似乎在 pod 中,我们可以通过以下任一方式访问配置文件
- 使用 Kubernetes 符号链接 -
/var/opt/app_configs/..data/app-config.yaml
- 配置文件的“正常”路径 -
/var/opt/app_configs/app-config.yaml
推荐什么?