【OpenShift】项目上OpenShift遇到的问题总结
1. yaml 文件 ---Error: found character that cannot start any token
问题:
在 openshift 中部署我的应用程序期间,我曾经遇到错误“found character that cannot start any token”
我只是添加了一个额外的环境变量,就像之前设置的其他环境变量一样。
查看openshift.yaml文件,看起来好多了,没发现什么问题。但我不断收到上述错误。最终找到了根本原因。
解决方法:
删除 openshift.yaml 文件中的所有tab。使用空格进行格式化
2. unrecongnized type:int32
问题:
编辑template.yml文件时。参数是数字类型的时候,如果你用${parameter}占位符有报这个错
解决方法:
${{parameter}} 双框号
其它问题持续更新中。。。
参考资料
https://ssathishan.medium.com/openshift-yaml-error-found-character-that-cannot-start-any-token-c715c4be670c