diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-06-10 17:46:21 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-06-13 11:24:57 -0400 |
commit | 9193a58d129716601091b2f3ceb7ca3960a694cb (patch) | |
tree | 5f6cd3b7255bcf9d90ef5d21c5958d75683740ec /roles/openshift_node/tasks | |
parent | fea08b9ba213b69667e103ff9dfd4383218e9eac (diff) | |
download | openshift-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/tasks')
-rw-r--r-- | roles/openshift_node/tasks/main.yml | 11 |
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 |