From a76b5473fa5630d7d1cc02e0123bfce9f42d9359 Mon Sep 17 00:00:00 2001
From: Arie Peterson <arie@greenhost.nl>
Date: Tue, 30 Jul 2019 11:12:59 +0200
Subject: [PATCH] Use absolute paths in helmfile value file references

---
 helmfiles/helmfile.d/00-storage.yaml      | 2 +-
 helmfiles/helmfile.d/05-cert-manager.yaml | 2 +-
 helmfiles/helmfile.d/10-nginx.yaml        | 2 +-
 helmfiles/helmfile.d/15-monitoring.yaml   | 2 +-
 helmfiles/helmfile.d/20-nextcloud.yaml    | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/helmfiles/helmfile.d/00-storage.yaml b/helmfiles/helmfile.d/00-storage.yaml
index 7761a6cdd..f9ce001f0 100644
--- a/helmfiles/helmfile.d/00-storage.yaml
+++ b/helmfiles/helmfile.d/00-storage.yaml
@@ -1,7 +1,7 @@
 environments:
   oas:
     values:
-      - "../../../../../../etc/OpenAppStack/values/local.yaml"
+      - "/etc/OpenAppStack/values/local.yaml"
 
 releases:
   - name: "oas-{{ .Environment.Values.releaseName }}-local-storage"
diff --git a/helmfiles/helmfile.d/05-cert-manager.yaml b/helmfiles/helmfile.d/05-cert-manager.yaml
index 7dd0555b8..bee3cf962 100644
--- a/helmfiles/helmfile.d/05-cert-manager.yaml
+++ b/helmfiles/helmfile.d/05-cert-manager.yaml
@@ -1,7 +1,7 @@
 environments:
   oas:
     values:
-      - "../../../../../../etc/OpenAppStack/values/local.yaml"
+      - "/etc/OpenAppStack/values/local.yaml"
 
 repositories:
   - name: jetstack
diff --git a/helmfiles/helmfile.d/10-nginx.yaml b/helmfiles/helmfile.d/10-nginx.yaml
index c044531af..3e89ef640 100644
--- a/helmfiles/helmfile.d/10-nginx.yaml
+++ b/helmfiles/helmfile.d/10-nginx.yaml
@@ -1,7 +1,7 @@
 environments:
   oas:
     values:
-      - "../../../../../../etc/OpenAppStack/values/local.yaml"
+      - "/etc/OpenAppStack/values/local.yaml"
 
 releases:
   - name: "oas-{{ .Environment.Values.releaseName }}-proxy"
diff --git a/helmfiles/helmfile.d/15-monitoring.yaml b/helmfiles/helmfile.d/15-monitoring.yaml
index 27065dadf..221d81d3b 100644
--- a/helmfiles/helmfile.d/15-monitoring.yaml
+++ b/helmfiles/helmfile.d/15-monitoring.yaml
@@ -1,7 +1,7 @@
 environments:
   oas:
     values:
-      - "../../../../../../etc/OpenAppStack/values/local.yaml"
+      - "/etc/OpenAppStack/values/local.yaml"
 
 releases:
   - name: "oas-{{ .Environment.Values.releaseName }}-prometheus"
diff --git a/helmfiles/helmfile.d/20-nextcloud.yaml b/helmfiles/helmfile.d/20-nextcloud.yaml
index c0018e2fc..0b7438bc9 100644
--- a/helmfiles/helmfile.d/20-nextcloud.yaml
+++ b/helmfiles/helmfile.d/20-nextcloud.yaml
@@ -1,7 +1,7 @@
 environments:
   oas:
     values:
-      - "../../../../../../etc/OpenAppStack/values/local.yaml"
+      - "/etc/OpenAppStack/values/local.yaml"
 
 # Note: needs helm-git plugin (https://github.com/aslafy-z/helm-git)
 repositories:
-- 
GitLab