我需要将当前目录映射到Windows上的一定数量的Kubernetes。
我可以使用hostPath进行此操作,但是无法在部署中获取当前目录。
通常,我们使用./传递当前目录,但是kubernetes无法识别它。
如何在Windows kubernetes中使用相应的./?
这就是我要尝试的方式:
apiVersion: apps/v1
kind: Deployment
metadata:
name: testeleitor
labels:
app: leitoreventos
spec:
selector:
matchLabels:
app: leitoreventos
tier: backend
replicas: 1
template:
metadata:
labels:
app: leitoreventos
tier: backend
spec:
restartPolicy: Always
containers:
- image: leitordeeventos:v1.6.1
name: leitor
ports:
- containerPort: 5555
volumeMounts:
- mountPath: /home/binarios/test/
name: test-volume
volumes:
- name: test-volume
hostPath:
path: ./test/
type: Directory