mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-13 21:34:40 +03:00
The old repository for these has been deleted, leaving the previous configuration not possible to deploy, and even currently running clusters fail after a restart as the DeameonSet has ImagePullPolicy: Always. More details can be found here: kubernetes-sigs/vsphere-csi-driver#3053 As of writing, only CSI driver versions 3.1.2 to 3.3.1 is available in this registry. This "officially" supports Kubernetes 1.26 to 1.30. Since older drivers are not available, I have removed some feature-gating for those unavailable versions while I was at it. For the cloud provider, the `latest` image is now missing, and only 1.28.0 to 1.31.0 are available. I've set the latest of these as the new default. I also updated the documented default versions, as they were all out of date and not aligned with actual code defaults.
30 lines
893 B
Django/Jinja
30 lines
893 B
Django/Jinja
apiVersion: v1
|
|
data:
|
|
{% if external_vsphere_version >= "7.0" %}
|
|
"csi-auth-check": "true"
|
|
{% else %}
|
|
"csi-auth-check": "false"
|
|
{% endif %}
|
|
"csi-auth-check": "true"
|
|
"online-volume-extend": "true"
|
|
"trigger-csi-fullsync": "false"
|
|
"async-query-volume": "true"
|
|
"block-volume-snapshot": "true"
|
|
"csi-windows-support": "false"
|
|
"list-volumes": "true"
|
|
"pv-to-backingdiskobjectid-mapping": "false"
|
|
"cnsmgr-suspend-create-volume": "true"
|
|
"topology-preferential-datastores": "true"
|
|
"max-pvscsi-targets-per-vm": "true"
|
|
"multi-vcenter-csi-topology": "true"
|
|
"csi-internal-generated-cluster-id": "true"
|
|
"listview-tasks": "true"
|
|
"improved-csi-idempotency": "true"
|
|
"improved-volume-topology": "true"
|
|
"use-csinode-id": "true"
|
|
"list-volumes": "false"
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: internal-feature-states.csi.vsphere.vmware.com
|
|
namespace: "{{ vsphere_csi_namespace }}"
|