From f0a4cfd1cb298ef85a4f9b0c4774ba2acb69a6de Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Thu, 17 Aug 2017 15:56:49 -0700 Subject: [PATCH] *: Update location of 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 6d093f39..fb509129 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 -* [purenetes/bootkube-terraform](https://github.com/purenetes/bootkube-terraform) - checkout the tag for the target version and `terraform apply` to render assets +* [poseidon/bootkube-terraform](https://github.com/poseidon/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 b747ffac..971ef664 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/purenetes/bootkube-terraform.git?ref=v0.6.0" + source = "git::https://github.com/poseidon/bootkube-terraform.git?ref=v0.6.0" cluster_name = "${var.cluster_name}" api_servers = ["${var.k8s_domain_name}"]