File tree Expand file tree Collapse file tree 10 files changed +32
-2
lines changed Expand file tree Collapse file tree 10 files changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -11,5 +11,10 @@ module "cluster_services" {
1111 cluster_name = " ${ aws_eks_cluster . current . name } "
1212 cluster_endpoint = " ${ aws_eks_cluster . current . endpoint } "
1313 cluster_ca = " ${ aws_eks_cluster . current . certificate_authority . 0 . data } "
14+
15+ # hack, because modules can't have depends_on
16+ # prevent a race between kubernetes provider and cluster services/kustomize
17+ # creating the namespace and the provider erroring out during apply
18+ not_used = " ${ kubernetes_namespace . current . metadata . 0 . name } "
1419 }
1520}
Original file line number Diff line number Diff line change @@ -15,5 +15,10 @@ module "cluster_services" {
1515 client_cert = " ${ azurerm_kubernetes_cluster . current . kube_config . 0 . client_certificate } "
1616 client_key = " ${ azurerm_kubernetes_cluster . current . kube_config . 0 . client_key } "
1717 path_cwd = " ${ path . cwd } "
18+
19+ # hack, because modules can't have depends_on
20+ # prevent a race between kubernetes provider and cluster services/kustomize
21+ # creating the namespace and the provider erroring out during apply
22+ not_used = " ${ kubernetes_namespace . current . metadata . 0 . name } "
1823 }
1924}
Original file line number Diff line number Diff line change @@ -12,5 +12,10 @@ module "cluster_services" {
1212 cluster_endpoint = " ${ google_container_cluster . current . endpoint } "
1313 cluster_ca = " ${ google_container_cluster . current . master_auth . 0 . cluster_ca_certificate } "
1414 path_cwd = " ${ path . cwd } "
15+
16+ # hack, because modules can't have depends_on
17+ # prevent a race between kubernetes provider and cluster services/kustomize
18+ # creating the namespace and the provider erroring out during apply
19+ not_used = " ${ kubernetes_namespace . current . metadata . 0 . name } "
1520 }
1621}
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ clusters = {
1414 # e.g. kbst-ops-eu-west-1.aws.infra.example.com
1515 base_domain = " "
1616
17- # The Azure location to deploy the clusters in
18- location = " "
17+ # The Azure resource group to use
18+ resource_group = " "
1919 }
2020
2121 # Settings for Ops-cluster
Original file line number Diff line number Diff line change 1+ # AKS apps overlay
2+
3+ Overlay for configuration specific to only apps AKS clusters.
Original file line number Diff line number Diff line change 1+ bases :
2+ - ../both # inherit configuration specifc to AKS
Original file line number Diff line number Diff line change 1+ # AKS overlay
2+
3+ Overlay for configuration shared across all AKS clusters.
Original file line number Diff line number Diff line change 1+ bases :
2+ - ../../common # inherit configuration shared between all clouds
Original file line number Diff line number Diff line change 1+ # AKS ops overlay
2+
3+ Overlay for configuration specific to only ops AKS clusters.
Original file line number Diff line number Diff line change 1+ bases :
2+ - ../both # inherit configuration specifc to AKS
You can’t perform that action at this time.
0 commit comments