Browse Source

add support for overriding default registry url

Jason DeTiberus 10 years ago
parent
commit
87cb07bc85
2 changed files with 18 additions and 0 deletions
  1. 9 0
      roles/openshift_master/tasks/main.yml
  2. 9 0
      roles/openshift_node/tasks/main.yml

+ 9 - 0
roles/openshift_master/tasks/main.yml

@@ -21,6 +21,15 @@
   notify:
   - restart openshift-master
 
+- name: Set default registry url
+  lineinfile:
+    dest: /etc/sysconfig/openshift-master
+    regexp: '^IMAGES='
+    line: "IMAGES={{ openshift_registry_url }}"
+  when: openshift_registry_url is defined
+  notify:
+  - restart openshift-master
+
 - name: Set master OpenShift facts
   include: "{{ role_path | dirname }}/openshift_common/tasks/set_facts.yml"
   facts:

+ 9 - 0
roles/openshift_node/tasks/main.yml

@@ -30,6 +30,15 @@
   notify:
   - restart openshift-node
 
+- name: Set default registry url
+  lineinfile:
+    dest: /etc/sysconfig/openshift-node
+    regexp: '^IMAGES='
+    line: "IMAGES={{ openshift_registry_url }}"
+  when: openshift_registry_url is defined
+  notify:
+  - restart openshift-node
+
 - name: Set OpenShift node facts
   include: "{{ role_path | dirname }}/openshift_common/tasks/set_facts.yml"
   facts: