Browse Source

Fix epel_enabled and RHEL support in bootstrap-os

Looks like `epel_enabled` was not configured for the epel install in `bootstrap-centos.yml`. Also, there were no conditionals that would trigger bootstrap for RHEL.
pull/4088/head
Chad Swenson 6 years ago
parent
commit
881be9b741
5 changed files with 11 additions and 4 deletions
  1. 3
      roles/bootstrap-os/defaults/main.yml
  2. 1
      roles/bootstrap-os/tasks/bootstrap-centos.yml
  3. 2
      roles/bootstrap-os/tasks/main.yml
  4. 6
      roles/container-engine/docker/templates/docker.service.j2
  5. 3
      roles/kubespray-defaults/defaults/main.yaml

3
roles/bootstrap-os/defaults/main.yml

@ -5,3 +5,6 @@ pip_python_coreos_modules:
override_system_hostname: true
coreos_auto_upgrade: true
# Install epel repo on Centos/RHEL
epel_enabled: false

1
roles/bootstrap-os/tasks/bootstrap-centos.yml

@ -52,6 +52,7 @@
name: epel-release
state: present
when:
- epel_enabled
- not is_atomic
- package_python_pip.results | length != 0

2
roles/bootstrap-os/tasks/main.yml

@ -18,7 +18,7 @@
when: '"Fedora" in os_release.stdout'
- include_tasks: bootstrap-centos.yml
when: '"CentOS" in os_release.stdout'
when: '"CentOS" in os_release.stdout or "Red Hat Enterprise Linux" in os_release.stdout'
- include_tasks: bootstrap-opensuse.yml
when: '"OpenSUSE" in os_release.stdout'

6
roles/container-engine/docker/templates/docker.service.j2

@ -2,13 +2,13 @@
Description=Docker Application Container Engine
Documentation=http://docs.docker.com
{% if ansible_os_family == "RedHat" %}
After=network.target docker-storage-setup.service{% if installed_docker_version.stdout is version('18.09.1', '>=') %} containerd.service{% endif %}
After=network.target docker-storage-setup.service{{ ' containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }}
Wants=docker-storage-setup.service
{% elif ansible_os_family == "Debian" %}
After=network.target docker.socket{% if installed_docker_version.stdout is version('18.09.1', '>=') %} containerd.service{% endif %}
After=network.target docker.socket{{ ' containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }}
Wants=docker.socket
{% elif ansible_os_family == "Suse" %}
After=network.target{% if installed_docker_version.stdout is version('18.09.1', '>=') %} containerd.service{% endif %}
After=network.target{{ ' containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }}
{% endif %}
[Service]

3
roles/kubespray-defaults/defaults/main.yaml

@ -44,6 +44,9 @@ local_release_dir: "/tmp/releases"
# Random shifts for retrying failed ops like pushing/downloading
retry_stagger: 5
# Install epel repo on Centos/RHEL
epel_enabled: false
# DNS configuration.
# Kubernetes cluster name, also will be used as DNS domain
cluster_name: cluster.local

Loading…
Cancel
Save