mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-24 02:20:51 +08:00
79 lines
2.6 KiB
YAML
79 lines
2.6 KiB
YAML
---
|
|
# TODO: allow for overriding default ports where possible
|
|
- fail:
|
|
msg: This role requres that osn_cluster_dns_domain is set
|
|
when: osn_cluster_dns_domain is not defined or not osn_cluster_dns_domain
|
|
- fail:
|
|
msg: This role requres that osn_cluster_dns_ip is set
|
|
when: osn_cluster_dns_ip is not defined or not osn_cluster_dns_ip
|
|
|
|
- name: Install OpenShift Node package
|
|
yum: pkg=openshift-node state=present
|
|
register: node_install_result
|
|
|
|
- name: Install openshift-sdn-ovs
|
|
yum: pkg=openshift-sdn-ovs state=present
|
|
register: sdn_install_result
|
|
when: openshift.common.use_openshift_sdn
|
|
|
|
- name: Set node OpenShift facts
|
|
openshift_facts:
|
|
role: "{{ item.role }}"
|
|
local_facts: "{{ item.local_facts }}"
|
|
with_items:
|
|
- role: common
|
|
local_facts:
|
|
hostname: "{{ openshift_hostname | default(none) }}"
|
|
public_hostname: "{{ openshift_public_hostname | default(none) }}"
|
|
deployment_type: "{{ openshift_deployment_type }}"
|
|
- role: node
|
|
local_facts:
|
|
labels: "{{ openshift_node_labels | default(none) }}"
|
|
annotations: "{{ openshift_node_annotations | default(none) }}"
|
|
registry_url: "{{ oreg_url | default(none) }}"
|
|
debug_level: "{{ openshift_node_debug_level | default(openshift.common.debug_level) }}"
|
|
portal_net: "{{ openshift_master_portal_net | default(None) }}"
|
|
|
|
# TODO: add the validate parameter when there is a validation command to run
|
|
- name: Create the Node config
|
|
template:
|
|
dest: "{{ openshift_node_config_file }}"
|
|
src: node.yaml.v1.j2
|
|
notify:
|
|
- restart openshift-node
|
|
|
|
- name: Configure OpenShift Node settings
|
|
lineinfile:
|
|
dest: /etc/sysconfig/openshift-node
|
|
regexp: "{{ item.regex }}"
|
|
line: "{{ item.line }}"
|
|
with_items:
|
|
- regex: '^OPTIONS='
|
|
line: "OPTIONS=--loglevel={{ openshift.node.debug_level }}"
|
|
- regex: '^CONFIG_FILE='
|
|
line: "CONFIG_FILE={{ openshift_node_config_file }}"
|
|
notify:
|
|
- restart openshift-node
|
|
|
|
- stat: path=/etc/sysconfig/docker
|
|
register: docker_check
|
|
|
|
# TODO: Enable secure registry when code available in origin
|
|
- name: Secure OpenShift Registry
|
|
lineinfile:
|
|
dest: /etc/sysconfig/docker
|
|
regexp: '^OPTIONS=.*'
|
|
line: "OPTIONS='--insecure-registry={{ openshift.node.portal_net }} --selinux-enabled'"
|
|
when: docker_check.stat.isreg
|
|
|
|
- name: Allow NFS access for VMs
|
|
seboolean: name=virt_use_nfs state=yes persistent=yes
|
|
|
|
- name: Start and enable openshift-node
|
|
service: name=openshift-node enabled=yes state=started
|
|
register: start_result
|
|
|
|
- name: pause to prevent service restart from interfering with bootstrapping
|
|
pause: seconds=30
|
|
when: start_result | changed
|