|
@@ -26,6 +26,7 @@
|
|
|
proxy_mode: "{{ openshift_node_proxy_mode | default('iptables') }}"
|
|
|
local_quota_per_fsgroup: "{{ openshift_node_local_quota_per_fsgroup | default(None) }}"
|
|
|
dns_ip: "{{ openshift_dns_ip | default(none) | get_dns_ip(hostvars[inventory_hostname])}}"
|
|
|
+ env_vars: "{{ openshift_node_env_vars | default(None) }}"
|
|
|
|
|
|
# We have to add tuned-profiles in the same transaction otherwise we run into depsolving
|
|
|
# problems because the rpms don't pin the version properly. This was fixed in 3.1 packaging.
|
|
@@ -91,6 +92,16 @@
|
|
|
notify:
|
|
|
- restart node
|
|
|
|
|
|
+- name: Configure Node Environment Variables
|
|
|
+ lineinfile:
|
|
|
+ dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
|
|
|
+ regexp: "^{{ item.key }}="
|
|
|
+ line: "{{ item.key }}={{ item.value }}"
|
|
|
+ create: true
|
|
|
+ with_dict: "{{ openshift.node.env_vars | default({}) }}"
|
|
|
+ notify:
|
|
|
+ - restart node
|
|
|
+
|
|
|
- name: Additional storage plugin configuration
|
|
|
include: storage_plugins/main.yml
|
|
|
|