首页 > 其他分享 >default-scheduler running PreBind plugin "VolumeBinding": binding volumes: timed out wait

default-scheduler running PreBind plugin "VolumeBinding": binding volumes: timed out wait

时间:2023-06-12 15:56:44浏览次数:43  
标签:PreBind volumes plugin 容器 scheduler ReadWriteMany minikube volumn ReadWriteOnce

看openebs-localpv-provisioner 和kube-scheduler-minikube 和kube-controller-manager-minikube的报错信息,就发现了问题

volumeClaimTemplates:
- metadata:
name: proxysql-data
spec:
accessModes:
- ReadWriteMany ## 就是这里了 不能用ReadWriteMany只能用ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: sc-file-hdd
volumeMode: Filesystem
1
2
3
4
5
6
7
8
9
10
11
解决
ReadWriteMany:volumn能被多个容器访问
ReadWriteOnce:volumn只能被一个容器访问
很好理解,statefulset本来就是有状态的数据,必须只能被每一个被一个容器访问

volumeClaimTemplates:
- metadata:
name: proxysql-data
spec:
accessModes:
- ReadWriteOnce # 这里改成ReadWriteOnce
resources:
requests:
storage: 1Gi
storageClassName: sc-file-hdd
volumeMode: Filesystem
————————————————
版权声明:本文为CSDN博主「阿尔卑斯LOVE」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/luzhangting/article/details/121033821

标签:PreBind,volumes,plugin,容器,scheduler,ReadWriteMany,minikube,volumn,ReadWriteOnce
From: https://www.cnblogs.com/ruiy/p/17475246.html

相关文章

  • cv2 undefined symbol: g_date_copy (or qt.qpa.plugin: Could not load..)解决
    cv2undefinedsymbol:g_date_copyorqt.qpa.plugin:Couldnotload问题背景:这次就是想用Qt5在Ubuntu上做一个GUI,结果一运行就报这个:QObject::moveToThread:Currentthread(0x7fc0f7435300)isnottheobject’sthread(0x7fc0f9f02cc0).Cannotmovetotargetthread(0x7......
  • mysql xplugin mysqlx
    https://dev.mysql.com/doc/refman/8.0/en/x-plugin-options-system-variables.html  Bydefault,foritsXpluginfeatures,MySQLlistensonport33060,boundtoallIPaddresses.See manualsectiononXpluginoptionsandsystemvariables (indicatingdefau......
  • VUE Error: Cannot call .tap() on a plugin that has not yet been defined. Call pl
    在对一个vue项目执行过“npmauditfix--force”命令之后,就出现了如下错误: ERROR Error:Cannotcall.tap()onapluginthathasnotyetbeendefined.Callplugin('preload').use(<Plugin>)first.有2个解决方法:方法一:删除之前的源码模块,重新下载后执行“npminstall......
  • kanzi的安卓工程报错解决办法:Error: Could not find or access Kanzi's Gradle plugin
    这是因为安卓里配置的环境变量不对。需要检查下述文件的路径是否真实存在,以及和使用的版本是否匹配  ......
  • 配置 webpack 的 SplitChunksPlugin
    VueCLI3构建的Vue2项目,配置webpack的SplitChunksPlugin插件,可以按照以下步骤进行操作:打开项目根目录下的vue.config.js文件(如果没有该文件,可以在根目录下创建一个)。在vue.config.js文件中添加以下内容:module.exports={configureWebpack:{optimi......
  • maven-jar-plugin 定制包含哪些内容,不包含哪些
    http://maven.apache.org/plugins/maven-jar-plugin/usage.html控制打包内容<build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-jar-pl......
  • maven-antrun-plugin
    1) 依赖 2)默认的classpath http://maven.apache.org/plugins/maven-antrun-plugin/examples/classpaths.htmlmaven.compile.classpathmaven.runtime.classpathmaven.test.classpathmaven.plugin.classpath3)示例<targetname="slice2java"><mk......
  • 26) minify-maven-plugin 合并压缩 js css文件
     http://samaxes.github.io/minify-maven-plugin/minify-mojo.html <build><plugins><plugin><groupId>com.samaxes.maven</groupId><artifactId>minify-maven-plugin</artifactId><version&g......
  • 27) yuicompressor-maven-plugin 合并压缩 js css文件
    http://davidb.github.io/yuicompressor-maven-plugin/compress-mojo.html<plugin><groupId>net.alchim31.maven</groupId><artifactId>yuicompressor-maven-plugin</artifactId><version>1.5.1</......
  • vite + react + arco-design-mobile 使用 babel-plugin-import 实现按需加载
    0.什么是vite?vite是一种新型前端构建工具。一个开发服务器,它基于原生ES模块提供丰富的内建功能一套构建指令,它使用Rollup打包你的代码,可输出用于生产环境的高度优化过的静态资源1.什么是babel?babel是一个javasctipt编译器,他是一个工具链,主要用于在当前浏览器和旧浏览器......