Skip to content

Commit 9e92dc6

Browse files
committed
Merge branch 'release/4.1.0'
2 parents d79a1e9 + adae2b8 commit 9e92dc6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+76
-67
lines changed

CHANGELOG.md

+10-1

ansible.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ scp_if_ssh = true
77
ansible_managed = Ansible managed: Do NOT edit this file manually!
88
forks = 10
99
host_key_checking = false
10-
interpreter_python = auto
10+
interpreter_python = python3
1111
nocows = 1
1212
retry_files_enabled = false

molecule/centos-7/prepare.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
--autosubscribe
2929
ignore_errors: true
3030

31-
- name: redhat | yum install ca-certificates curl python3 sudo
31+
- name: redhat | yum install -y ca-certificates curl python3 sudo
3232
raw: |
3333
yum install -y ca-certificates curl python3 sudo
3434
ignore_errors: true
3535

36-
- name: suse | zypper install ca-certificates* curl python3 python3-xml sudo
36+
- name: suse | zypper -n install -y ca-certificates curl python3 sudo
3737
raw: |
3838
zypper -n --gpg-auto-import-keys refresh
39-
zypper -n install -y ca-certificates* curl python3 python3-xml sudo
39+
zypper -n install -y ca-certificates curl python3 sudo
4040
ignore_errors: true
4141

42-
- name: debian | apt-get install ca-certificates curl python3 sudo
42+
- name: debian | apt-get install -y ca-certificates curl python3 sudo
4343
raw: |
4444
apt-get update
4545
apt-get install -y ca-certificates curl python3 sudo

molecule/redhat-7-vagrant/prepare.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
--autosubscribe
2929
ignore_errors: true
3030

31-
- name: redhat | yum install ca-certificates curl python3 sudo
31+
- name: redhat | yum install -y ca-certificates curl python3 sudo
3232
raw: |
3333
yum install -y ca-certificates curl python3 sudo
3434
ignore_errors: true
3535

36-
- name: suse | zypper install ca-certificates* curl python3 python3-xml sudo
36+
- name: suse | zypper -n install -y ca-certificates curl python3 sudo
3737
raw: |
3838
zypper -n --gpg-auto-import-keys refresh
39-
zypper -n install -y ca-certificates* curl python3 python3-xml sudo
39+
zypper -n install -y ca-certificates curl python3 sudo
4040
ignore_errors: true
4141

42-
- name: debian | apt-get install ca-certificates curl python3 sudo
42+
- name: debian | apt-get install -y ca-certificates curl python3 sudo
4343
raw: |
4444
apt-get update
4545
apt-get install -y ca-certificates curl python3 sudo

molecule/suse-15/prepare.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
--autosubscribe
2929
ignore_errors: true
3030

31-
- name: redhat | yum install ca-certificates curl python3 sudo
31+
- name: redhat | yum install -y ca-certificates curl python3 sudo
3232
raw: |
3333
yum install -y ca-certificates curl python3 sudo
3434
ignore_errors: true
3535

36-
- name: suse | zypper install ca-certificates* curl python3 python3-xml sudo
36+
- name: suse | zypper -n install -y ca-certificates curl python3 sudo
3737
raw: |
3838
zypper -n --gpg-auto-import-keys refresh
39-
zypper -n install -y ca-certificates* curl python3 python3-xml sudo
39+
zypper -n install -y ca-certificates curl python3 sudo
4040
ignore_errors: true
4141

42-
- name: debian | apt-get install ca-certificates curl python3 sudo
42+
- name: debian | apt-get install -y ca-certificates curl python3 sudo
4343
raw: |
4444
apt-get update
4545
apt-get install -y ca-certificates curl python3 sudo

molecule/ubuntu-16.04/prepare.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
--autosubscribe
2929
ignore_errors: true
3030

31-
- name: redhat | yum install ca-certificates curl python3 sudo
31+
- name: redhat | yum install -y ca-certificates curl python3 sudo
3232
raw: |
3333
yum install -y ca-certificates curl python3 sudo
3434
ignore_errors: true
3535

36-
- name: suse | zypper install ca-certificates* curl python3 python3-xml sudo
36+
- name: suse | zypper -n install -y ca-certificates curl python3 sudo
3737
raw: |
3838
zypper -n --gpg-auto-import-keys refresh
39-
zypper -n install -y ca-certificates* curl python3 python3-xml sudo
39+
zypper -n install -y ca-certificates curl python3 sudo
4040
ignore_errors: true
4141

42-
- name: debian | apt-get install ca-certificates curl python3 sudo
42+
- name: debian | apt-get install -y ca-certificates curl python3 sudo
4343
raw: |
4444
apt-get update
4545
apt-get install -y ca-certificates curl python3 sudo

molecule/ubuntu-18.04-vagrant/prepare.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
--autosubscribe
2929
ignore_errors: true
3030

31-
- name: redhat | yum install ca-certificates curl python3 sudo
31+
- name: redhat | yum install -y ca-certificates curl python3 sudo
3232
raw: |
3333
yum install -y ca-certificates curl python3 sudo
3434
ignore_errors: true
3535

36-
- name: suse | zypper install ca-certificates* curl python3 python3-xml sudo
36+
- name: suse | zypper -n install -y ca-certificates curl python3 sudo
3737
raw: |
3838
zypper -n --gpg-auto-import-keys refresh
39-
zypper -n install -y ca-certificates* curl python3 python3-xml sudo
39+
zypper -n install -y ca-certificates curl python3 sudo
4040
ignore_errors: true
4141

42-
- name: debian | apt-get install ca-certificates curl python3 sudo
42+
- name: debian | apt-get install -y ca-certificates curl python3 sudo
4343
raw: |
4444
apt-get update
4545
apt-get install -y ca-certificates curl python3 sudo

molecule/ubuntu-18.04/prepare.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
--autosubscribe
2929
ignore_errors: true
3030

31-
- name: redhat | yum install ca-certificates curl python3 sudo
31+
- name: redhat | yum install -y ca-certificates curl python3 sudo
3232
raw: |
3333
yum install -y ca-certificates curl python3 sudo
3434
ignore_errors: true
3535

36-
- name: suse | zypper install ca-certificates* curl python3 python3-xml sudo
36+
- name: suse | zypper -n install -y ca-certificates curl python3 sudo
3737
raw: |
3838
zypper -n --gpg-auto-import-keys refresh
39-
zypper -n install -y ca-certificates* curl python3 python3-xml sudo
39+
zypper -n install -y ca-certificates curl python3 sudo
4040
ignore_errors: true
4141

42-
- name: debian | apt-get install ca-certificates curl python3 sudo
42+
- name: debian | apt-get install -y ca-certificates curl python3 sudo
4343
raw: |
4444
apt-get update
4545
apt-get install -y ca-certificates curl python3 sudo

playbooks/roles/ceph-common

playbooks/roles/ceph-mds

playbooks/roles/ceph-mgr

playbooks/roles/ceph-mon

playbooks/roles/ceph-osd

playbooks/roles/ceph-rgw

playbooks/roles/cri-tools

playbooks/roles/duplicity

playbooks/roles/kubeadm

playbooks/roles/kubectl

playbooks/roles/kubelet

playbooks/roles/kubernetes

playbooks/roles/ntp

Submodule ntp updated from b51202e to 0551860

scripts/bootstrap-ansible.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fi
3232
# Prepare Zypper dependencies
3333
if [ -x "$(command -v zypper)" ]; then
3434
zypper -n --gpg-auto-import-keys refresh
35-
zypper -n install -y ca-certificates* curl gcc libffi-devel libopenssl-devel make python3 python3-devel python3-xml sudo
35+
zypper -n install -y ca-certificates curl gcc libffi-devel libopenssl-devel make python3 python3-devel sudo
3636
fi
3737

3838
# Install PIP

0 commit comments

Comments
 (0)