我在通过 Velero CLI 将 Valero 安装到 AWS Kubernetes 集群时遇到以下问题。
velero install \
--provider aws \
--bucket $BUCKET \
--secret-file ./credentials-velero \ --use-restic --wait \
--plugins velero/velero-plugin-for-aws:v1.0.0
安装失败,结果:
An error occurred:
Error installing Velero. Use `kubectl logs deploy/velero -n velero` to check the deploy logs: Error creating resource CustomResourceDefinition/backups.velero.io: CustomResourceDefinition.apiextensions.k8s.io "backups.velero.io" is invalid: [spec.validation.openAPIV3Schema.properties[spec].properties[labelSelector].properties[matchLabels].additionalProperties: Forbidden: additionalProperties cannot be set to false, spec.validation.openAPIV3Schema.properties[spec].properties[hooks].properties[resources].items.properties[labelSelector].properties[matchLabels].additionalProperties: Forbidden: additionalProperties cannot be set to false]--
对附加属性的唯一引用嵌套在生成的 .yaml 文件中,在本例中是用于备份的文件。我不知道这个字符串值是如何被非法设置为 false 的,但据我所知,这不是我使用的标志的结果。