update to latest 2.26.0 kubespray version and add dns zones settings to coredns

This commit is contained in:
2024-12-14 21:56:19 +03:00
parent be9c8a28fd
commit 4294f52703
368 changed files with 37761 additions and 2942 deletions

View File

@@ -30,6 +30,9 @@ spec:
- --leader-election=true
{% endif %}
- "--default-fstype=ext4"
{% for key, value in cinder_csi_attacher_extra_args.items() %}
- "{{ '--' + key + '=' + value }}"
{% endfor %}
env:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
@@ -50,6 +53,9 @@ spec:
{% if cinder_csi_controller_replicas is defined and cinder_csi_controller_replicas > 1 %}
- "--leader-election=true"
{% endif %}
{% for key, value in cinder_csi_provisioner_extra_args.items() %}
- "{{ '--' + key + '=' + value }}"
{% endfor %}
env:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
@@ -66,6 +72,9 @@ spec:
{% if cinder_csi_controller_replicas is defined and cinder_csi_controller_replicas > 1 %}
- --leader-election=true
{% endif %}
{% for key, value in cinder_csi_snapshotter_extra_args.items() %}
- "{{ '--' + key + '=' + value }}"
{% endfor %}
env:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
@@ -82,6 +91,9 @@ spec:
{% if cinder_csi_controller_replicas is defined and cinder_csi_controller_replicas > 1 %}
- --leader-election=true
{% endif %}
{% for key, value in cinder_csi_resizer_extra_args.items() %}
- "{{ '--' + key + '=' + value }}"
{% endfor %}
env:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
@@ -93,6 +105,9 @@ spec:
imagePullPolicy: {{ k8s_image_pull_policy }}
args:
- "--csi-address=$(ADDRESS)"
{% for key, value in cinder_liveness_probe_extra_args.items() %}
- "{{ '--' + key + '=' + value }}"
{% endfor %}
env:
- name: ADDRESS
value: /var/lib/csi/sockets/pluginproxy/csi.sock
@@ -107,6 +122,9 @@ spec:
- "--endpoint=$(CSI_ENDPOINT)"
- "--cloud-config=$(CLOUD_CONFIG)"
- "--cluster=$(CLUSTER_NAME)"
{% for key, value in cinder_csi_plugin_extra_args.items() %}
- "{{ '--' + key + '=' + value }}"
{% endfor %}
env:
- name: CSI_ENDPOINT
value: unix://csi/csi.sock