summaryrefslogtreecommitdiffstats
path: root/patches/onap-casablanca-patch-role
diff options
context:
space:
mode:
authorMichal Ptacek <m.ptacek@partner.samsung.com>2019-01-28 13:03:16 +0000
committerMichal Ptacek <m.ptacek@partner.samsung.com>2019-02-06 08:24:39 +0000
commit5a269d2e06be837377364111be9c238979260b78 (patch)
tree024c52b6b215ab9e5e780b9289030e81d0d3339b /patches/onap-casablanca-patch-role
parent1f264b4f471e3570b8b541af7be9a2d300f7c930 (diff)
Setting-up NPM registry for dgbuilder
This commit is showing-up how OOM patches must be handled in casablanca release. In Dublin we would like to avoid this completely OOM-1610 so here we are just reproducing the same logic which was already implemented in Beijing for bash offline installer. In general it works in a way that OOM charts are patched during offline platform build and values are configured in install time using pre-install application role/hook. Change-Id: I1a2425ef63edd6bc08dcecf0fcae7fd6e553d0ed Issue-ID: OOM-1616 Signed-off-by: Michal Ptacek <m.ptacek@partner.samsung.com>
Diffstat (limited to 'patches/onap-casablanca-patch-role')
-rw-r--r--patches/onap-casablanca-patch-role/tasks/main.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/patches/onap-casablanca-patch-role/tasks/main.yml b/patches/onap-casablanca-patch-role/tasks/main.yml
new file mode 100644
index 00000000..a7064b16
--- /dev/null
+++ b/patches/onap-casablanca-patch-role/tasks/main.yml
@@ -0,0 +1,24 @@
+---
+# This role contains patching logic for OOM charts
+# and is valid until OOM-1610 is implemented
+- name: Patch OOM - nexus domain resolving
+ lineinfile:
+ path: "{{ app_helm_charts_infra_directory }}/{{ item }}"
+ regexp: '^(.*)HOSTS_FILE_RECORD'
+ line: '\g<1>{{ cluster_ip }} {{ simulated_hosts.nexus | join(" ") }} >> /etc/hosts;'
+ backrefs: yes
+ state: present
+ with_items:
+ - common/dgbuilder/templates/deployment.yaml
+ - sdnc/charts/sdnc-portal/templates/deployment.yaml
+
+- name: Patch OOM - set npm registry
+ lineinfile:
+ path: "{{ app_helm_charts_infra_directory }}/{{ item }}"
+ regexp: '^(.*)NPM_REGISTRY_RECORD'
+ line: '\g<1>npm set registry "http://nexus.{{ ansible_nodename }}/repository/npm-private/";'
+ backrefs: yes
+ state: present
+ with_items:
+ - common/dgbuilder/templates/deployment.yaml
+ - sdnc/charts/sdnc-portal/templates/deployment.yaml