summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2016-06-10 17:46:21 -0400
committerAndrew Butcher <abutcher@redhat.com>2016-06-13 11:24:57 -0400
commit9193a58d129716601091b2f3ceb7ca3960a694cb (patch)
tree5f6cd3b7255bcf9d90ef5d21c5958d75683740ec /roles/openshift_node
parentfea08b9ba213b69667e103ff9dfd4383218e9eac (diff)
downloadopenshift-9193a58d129716601091b2f3ceb7ca3960a694cb.tar.gz
openshift-9193a58d129716601091b2f3ceb7ca3960a694cb.tar.bz2
openshift-9193a58d129716601091b2f3ceb7ca3960a694cb.tar.xz
openshift-9193a58d129716601091b2f3ceb7ca3960a694cb.zip
Add per-service environment variables.
Diffstat (limited to 'roles/openshift_node')
-rw-r--r--roles/openshift_node/tasks/main.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/roles/openshift_node/tasks/main.yml b/roles/openshift_node/tasks/main.yml
index 657e99e87..71ee9965b 100644
--- a/roles/openshift_node/tasks/main.yml
+++ b/roles/openshift_node/tasks/main.yml
@@ -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