This is an automated email from the ASF dual-hosted git repository. omartushevskyi pushed a commit to branch DLAB-836 in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
The following commit(s) were added to refs/heads/DLAB-836 by this push: new a319dc8 [DLAB-792]: refactored DLAB-ui chart a319dc8 is described below commit a319dc88a0e03ba5d6825ca467a12d2eeb242da4 Author: Oleh Martushevskyi <oleh_martushevs...@epam.com> AuthorDate: Mon Jul 15 13:16:57 2019 +0300 [DLAB-792]: refactored DLAB-ui chart --- .../terraform/aws/modules/dlab-ui/dlab-ui.tf | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/infrastructure-provisioning/terraform/aws/modules/dlab-ui/dlab-ui.tf b/infrastructure-provisioning/terraform/aws/modules/dlab-ui/dlab-ui.tf index 04cd33e..cfb66a5 100644 --- a/infrastructure-provisioning/terraform/aws/modules/dlab-ui/dlab-ui.tf +++ b/infrastructure-provisioning/terraform/aws/modules/dlab-ui/dlab-ui.tf @@ -17,4 +17,17 @@ # specific language governing permissions and limitations # under the License. # -# ****************************************************************************** \ No newline at end of file +# ****************************************************************************** + +provider "helm" { + install_tiller = true + namespace = "kube-system" + service_account = "tiller" + tiller_image = "gcr.io/kubernetes-helm/tiller:v2.14.1" +} + + +resource "helm_release" "my_mongo" { + name = "dlab-ui" + chart = "./dlab-ui-chart" +} --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@dlab.apache.org For additional commands, e-mail: commits-h...@dlab.apache.org