在部署到Kubernetes时,我正在使用Drone为文件写一个秘密。怎么用java Spring Boot读取这个文件?
无人机命令
commands:
- touch naspvtkey.txt
- ls -a
- echo "$NASPVTKEY" > naspvtkey.txt
无人机输出:
+ touch naspvtkey.txt -------> created the file
+ ls -a
.DS_Store
.drone.yml
.drone.yml.sig
.git
.gitignore
.mvn
Dockerfile
README.md
kubernetes
mvnw
naspvtkey.txt
pom.xml
src
+ echo "$NASPVTKEY" > naspvtkey.txt ---------> added my secret
我正在尝试使用访问该文件
file = new File("/naspvtkey.txt");
确保容器用户有权在根目录中创建文件。