From 3ca88334d24e36dfa666c32b60b2b0856b7b3c7a Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Thu, 3 Aug 2017 14:00:35 -0700 Subject: [PATCH] *: Fix location of the bootkube-terraform module --- Documentation/bootkube-upgrades.md | 2 +- examples/terraform/modules/bootkube/bootkube.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/bootkube-upgrades.md b/Documentation/bootkube-upgrades.md index c43c94b3..6d093f39 100644 --- a/Documentation/bootkube-upgrades.md +++ b/Documentation/bootkube-upgrades.md @@ -55,7 +55,7 @@ Update control plane components with `kubectl`. Then update the `kubelet` system Prepare the changes to the Kubernetes manifests by generating assets for a target Kubernetes cluster (e.g. bootkube `v0.5.0` produces Kubernetes 1.6.6 and bootkube `v0.5.1` produces Kubernetes 1.6.7). Choose the tool used during creation of the cluster: * [kubernetes-incubator/bootkube](https://github.com/kubernetes-incubator/bootkube) - install the `bootkube` binary for the target version and render assets -* [dghubble/bootkube-terraform](https://github.com/dghubble/bootkube-terraform) - checkout the tag for the target version and `terraform apply` to render assets +* [purenetes/bootkube-terraform](https://github.com/purenetes/bootkube-terraform) - checkout the tag for the target version and `terraform apply` to render assets Diff the generated assets against the assets used when originally creating the cluster. In simple cases, you may only need to bump the hyperkube image. In more complex cases, some manifests may have new flags or configuration. diff --git a/examples/terraform/modules/bootkube/bootkube.tf b/examples/terraform/modules/bootkube/bootkube.tf index ab548926..b747ffac 100644 --- a/examples/terraform/modules/bootkube/bootkube.tf +++ b/examples/terraform/modules/bootkube/bootkube.tf @@ -1,6 +1,6 @@ # Self-hosted Kubernetes assets (kubeconfig, manifests) module "bootkube" { - source = "git::https://github.com/dghubble/bootkube-terraform.git?ref=v0.6.0" + source = "git::https://github.com/purenetes/bootkube-terraform.git?ref=v0.6.0" cluster_name = "${var.cluster_name}" api_servers = ["${var.k8s_domain_name}"]