You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by om...@apache.org on 2019/11/12 12:46:41 UTC

[incubator-dlab] branch DLAB-1158 updated: fixed issue with path

This is an automated email from the ASF dual-hosted git repository.

omartushevskyi pushed a commit to branch DLAB-1158
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git


The following commit(s) were added to refs/heads/DLAB-1158 by this push:
     new c2ff33e  fixed issue with path
c2ff33e is described below

commit c2ff33ef4054f68e10316079645a6fb4e671bddc
Author: Oleh Martushevskyi <Ol...@epam.com>
AuthorDate: Tue Nov 12 14:46:28 2019 +0200

    fixed issue with path
---
 .../terraform/gcp/ssn-gke/main/modules/helm_charts/cert-manager.tf    | 2 +-
 .../terraform/gcp/ssn-gke/main/modules/helm_charts/step-ca.tf         | 4 ++--
 .../terraform/gcp/ssn-gke/main/modules/helm_charts/step-issuer.tf     | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/cert-manager.tf b/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/cert-manager.tf
index cb5c18f..77daaa4 100644
--- a/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/cert-manager.tf
+++ b/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/cert-manager.tf
@@ -38,7 +38,7 @@
 //}
 
 data "template_file" "cert_manager_values" {
-  template = file("./files/cert_manager_values.yaml")
+  template = file("./modules/helm_charts/files/cert_manager_values.yaml")
 }
 
 resource "helm_release" "cert_manager_crd" {
diff --git a/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/step-ca.tf b/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/step-ca.tf
index 8fc3390..bf6d41a 100644
--- a/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/step-ca.tf
+++ b/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/step-ca.tf
@@ -25,7 +25,7 @@
 //}
 
 data "template_file" "step_ca_values" {
-  template = file("./step-ca-chart/values.yaml")
+  template = file("./modules/helm_charts/step-ca-chart/values.yaml")
   vars = {
     step_ca_password             = random_string.step_ca_password.result
     step_ca_provisioner_password = random_string.step_ca_provisioner_password.result
@@ -34,7 +34,7 @@ data "template_file" "step_ca_values" {
 
 resource "helm_release" "step_ca" {
   name       = "step-certificates"
-  chart      = "./step-ca-chart"
+  chart      = "./modules/helm_charts/step-ca-chart"
   namespace  = kubernetes_namespace.dlab-namespace.metadata[0].name
   depends_on = [null_resource.cert_manager_delay]
   wait       = false
diff --git a/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/step-issuer.tf b/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/step-issuer.tf
index 6670f4c..122419e 100644
--- a/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/step-issuer.tf
+++ b/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/step-issuer.tf
@@ -20,12 +20,12 @@
 # ******************************************************************************
 
 data "template_file" "step_issuer_values" {
-  template = file("./step-issuer-chart/values.yaml")
+  template = file("./modules/helm_charts/step-issuer-chart/values.yaml")
 }
 
 resource "helm_release" "step-issuer" {
     name       = "step-issuer"
-    chart      = "./step-issuer-chart"
+    chart      = "./modules/helm_charts/step-issuer-chart"
     wait       = true
     depends_on = [null_resource.step_ca_delay]
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org