summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/tasks/config/configure-node-settings.yml
blob: 1186062ebcb73ba4ae4e9cd3f8838d2521f51305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: Configure Node settings
  lineinfile:
    dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
    regexp: "{{ item.regex }}"
    line: "{{ item.line }}"
    create: true
  with_items:
  - regex: '^OPTIONS='
    line: "OPTIONS=--loglevel={{ openshift.node.debug_level | default(2) }}"
  - regex: '^CONFIG_FILE='
    line: "CONFIG_FILE={{ openshift.common.config_base }}/node/node-config.yaml"
  - regex: '^IMAGE_VERSION='
    line: "IMAGE_VERSION={{ openshift_image_tag }}"
  notify:
  - restart node