forked from astronomer/terraform-kubernetes-astronomer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astronomer.tf
48 lines (40 loc) · 1.5 KB
/
astronomer.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
resource "random_id" "collision_avoidance" {
byte_length = 8
}
resource "null_resource" "helm_repo" {
count = var.astronomer_chart_git_repository == "" ? 0 : 1
provisioner "local-exec" {
command = <<EOF
set -xe
export directory=/tmp/astronomer-${var.astronomer_version_git_checkout}-${random_id.collision_avoidance.hex}
rm -rf $directory
mkdir -p $directory
cd $directory
git clone ${var.astronomer_chart_git_repository}
mv * astronomer || true
cd astronomer
git checkout ${var.astronomer_version_git_checkout}
EOF
}
triggers = {
build_number = "${timestamp()}"
}
}
resource "helm_release" "astronomer_local" {
count = var.install_astronomer_helm_chart ? 1 : 0
depends_on = [null_resource.helm_repo,
null_resource.dependency_getter,
kubernetes_secret.astronomer_bootstrap,
kubernetes_secret.astronomer_tls]
name = "astronomer"
namespace = var.astronomer_namespace
wait = var.wait_for_helm_chart
timeout = 900
values = [var.astronomer_helm_values]
version = var.astronomer_version
# Use the local chart for github clone method, use
# chart name for helm repo method.
chart = var.astronomer_chart_git_repository == "" ? var.astronomer_helm_chart_name : "/tmp/astronomer-${var.astronomer_version_git_checkout}-${random_id.collision_avoidance.hex}/astronomer"
# These settings only are applied when using a Helm chart repo
repository = var.astronomer_chart_git_repository == "" ? var.astronomer_helm_chart_repo_url : null
}