我有一个带有以下安装架的部署:
class Service {
Peer peer;
public Service(Peer peer){
this.peer = peer;
}
public Peer getPeer() {
return peer;
}
public String hola() {
Peer peer = getPeer();
}
}
这些卷配置:
Mounts:
/var/www/html/config from config (rw)
/var/www/html/data from data (rw)
但是,每当我写入容器中的指定目录时,主机文件夹中都不会显示该目录。
例如:
Volumes:
config:
Type: HostPath (bare host directory volume)
Path: /home/pi/owncloud/owncloud_conf
HostPathType: Directory
data:
Type: HostPath (bare host directory volume)
Path: /disk1/owncloud
HostPathType: Directory
这是怎么了?
答案 0 :(得分:3)
根据交换的消息,目录import android.app.NotificationChannel;
位于/disk1/owncloud
上,您的问题中描述的窗格显示所使用的卷的类型为hostpath,并且已计划没有通知主机路径的另一个节点(master node
)。
要解决此问题,您应该考虑移动工作节点的安装点(除非您要在主节点上运行Pod),并对pod affinity或nodeSelector使用规则。
如果您想要一个弹性的存储解决方案(副本,在不同节点之间分配),我建议使用: