This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
forked from kubernetes-sigs/kubespray
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/release-2.14' into master
* upstream/release-2.14: Fix unintended SIGPIPE (kubernetes-sigs#6817) Fix cinder & external_openstack cacert deployment (kubernetes-sigs#6745) (kubernetes-sigs#6832) Update hashes and set default to 1.18.10 (kubernetes-sigs#6842) Set ansible_python_interpreter to python3 on debian (fix error with mitogen) (kubernetes-sigs#6633) (kubernetes-sigs#6744)
- Loading branch information
Showing
10 changed files
with
71 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
roles/kubernetes-apps/csi_driver/cinder/tasks/cinder-write-cacert.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
# include to workaround mitogen issue | ||
# https://github.com/dw/mitogen/issues/663 | ||
|
||
- name: Cinder CSI Driver | Write cacert file | ||
copy: | ||
src: "{{ cinder_cacert }}" | ||
dest: "{{ kube_config_dir }}/cinder-cacert.pem" | ||
group: "{{ kube_cert_group }}" | ||
mode: 0640 | ||
tags: cinder-csi-driver | ||
delegate_to: "{{ delegate_host_to_write_cacert }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
roles/kubernetes-apps/external_cloud_controller/openstack/tasks/openstack-write-cacert.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
# include to workaround mitogen issue | ||
# https://github.com/dw/mitogen/issues/663 | ||
|
||
- name: External OpenStack Cloud Controller | Write cacert file | ||
copy: | ||
src: "{{ external_openstack_cacert }}" | ||
dest: "{{ kube_config_dir }}/external-openstack-cacert.pem" | ||
group: "{{ kube_cert_group }}" | ||
mode: 0640 | ||
tags: external-openstack | ||
delegate_to: "{{ delegate_host_to_write_cacert }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters