aboutsummaryrefslogtreecommitdiffstats
path: root/openlab/RegionOne/test/env.hcl
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2020-12-01 16:26:12 +0000
committerGerrit Code Review <gerrit@onap.org>2020-12-01 16:26:12 +0000
commit3d77cd259c2e4636af301b97c4e1acb1100ba922 (patch)
tree095f63f882ffb3cbae778f299a43608e7de8d524 /openlab/RegionOne/test/env.hcl
parentbbca5c14be7ef2370e20b28e33a8f23a148de101 (diff)
parentc81979ab0a9991b4d0e355c39aa8d55ab1b7ff69 (diff)
Merge "Initial Terragrunt files to separate Terraform codes"
Diffstat (limited to 'openlab/RegionOne/test/env.hcl')
-rw-r--r--openlab/RegionOne/test/env.hcl32
1 files changed, 32 insertions, 0 deletions
diff --git a/openlab/RegionOne/test/env.hcl b/openlab/RegionOne/test/env.hcl
new file mode 100644
index 0000000..842d594
--- /dev/null
+++ b/openlab/RegionOne/test/env.hcl
@@ -0,0 +1,32 @@
+# Set common variables for the environment. This is automatically pulled in in the root terragrunt.hcl configuration to
+# feed forward to the child modules.
+locals {
+ environment = "test" # name of the environment you use. e.g stage, prod or qa
+ network = "" # name of the network to connect with the Internet
+
+ # Rancher and Kubernetes
+ # To access a VM, 'ssh -i ssh_private_key_path kubernetes_user@one-of-the-external-ips'
+ # a key pair for accessing VMs
+ ssh_public_key = ""
+ ssh_private_key_path = ""
+
+ kubernetes_version = "v1.17.3-rancher1-1"
+ kubernetes_user = "ubuntu"
+ kubernetes_cluster_name = "rke_cluster"
+
+ kubernetes_home = "${get_parent_terragrunt_dir()}"
+
+ # Helm
+ service_account = "tiller"
+ namespace = "kube-system"
+
+ # NFS provisioner for kubernetes
+ nfs_enabled = true
+
+ # Keycloak
+ keycloak_enabled = false
+ olm_version = "0.16.1" # Version of Operator Lifecycle Manager
+
+ # Concourse CICD
+ concourse_enabled = false
+} \ No newline at end of file