Skip to content

Commit 57511a5

Browse files
committed
chore: update import paths
Signed-off-by: Andrew Rynhard <[email protected]>
1 parent fa3197b commit 57511a5

33 files changed

+402
-400
lines changed

Documentation/alpha-features.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ This alpha annotation will retain the endpoints even if the etcd pod isn't ready
1515
This feature is always enabled in endpoint controller in k8s even it is alpha.
1616

1717
References:
18-
- https://github.com/kubernetes-incubator/bootkube/issues/599
19-
- https://github.com/kubernetes-incubator/bootkube/pull/626#issuecomment-313187659
18+
- https://github.com/kubernetes-sigs/bootkube/issues/599
19+
- https://github.com/kubernetes-sigs/bootkube/pull/626#issuecomment-313187659

Documentation/development.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
First, clone the repo into the proper location in your [`GOPATH`][GOPATH]:
1010

1111
```
12-
go get -u github.com/kubernetes-incubator/bootkube
13-
cd $(go env GOPATH | cut -d: -f1)/src/github.com/kubernetes-incubator/bootkube
12+
go get -u github.com/kubernetes-sigs/bootkube
13+
cd $(go env GOPATH | cut -d: -f1)/src/github.com/kubernetes-sigs/bootkube
1414
```
1515

1616
Then build:

Documentation/disaster-recovery.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ failure scenarios:
1111
To minimize the likelihood of any of the these scenarios, production
1212
self-hosted clusters should always run in a high-availability configuration
1313
(**TODO:** [add documentation for running high-availability self-hosted
14-
clusters](https://github.com/kubernetes-incubator/bootkube/issues/311)).
14+
clusters](https://github.com/kubernetes-sigs/bootkube/issues/311)).
1515

1616
Nevertheless, in the event of a control plane loss the bootkube project
1717
provides limited disaster avoidance and recovery support through the
@@ -39,7 +39,7 @@ render` to create cluster manifests. Using the Pod Checkpointer is highly
3939
recommended for all self-hosted clusters to ensure node reboot resiliency.
4040

4141
For more information, see the [Pod Checkpointer
42-
README](https://github.com/kubernetes-incubator/bootkube/blob/master/cmd/checkpoint/README.md).
42+
README](https://github.com/kubernetes-sigs/bootkube/blob/master/cmd/checkpoint/README.md).
4343

4444
## Bootkube Recover
4545

@@ -85,7 +85,7 @@ automatically tear down the recovery control plane.
8585

8686
For best results always use the most recently tagged Bootkube release when using `recover`,
8787
regardless of which release was used to create the cluster. To see the available releases,
88-
checkout [the tagged binary releases on GitHub](https://github.com/kubernetes-incubator/bootkube/releases)
88+
checkout [the tagged binary releases on GitHub](https://github.com/kubernetes-sigs/bootkube/releases)
8989
or [the tagged Docker images on Quay.io](https://quay.io/repository/coreos/bootkube).
9090

9191
To see available options, run:
@@ -116,7 +116,7 @@ attempt to recreate self-hosted assets; it only runs a temporary control plane
116116
to allow the self-hosted control plane to recover itself.
117117

118118
For complete recovery examples see the
119-
[hack/multi-node/bootkube-test-recovery](https://github.com/kubernetes-incubator/bootkube/blob/master/hack/multi-node/bootkube-test-recovery)
119+
[hack/multi-node/bootkube-test-recovery](https://github.com/kubernetes-sigs/bootkube/blob/master/hack/multi-node/bootkube-test-recovery)
120120
and
121121

122122
[![asciicast](https://asciinema.org/a/dsp43ziuuzwcztni94y8l25s5.png)](https://asciinema.org/a/dsp43ziuuzwcztni94y8l25s5)

Documentation/upgrading.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Before beginning an upgrade, it is recommended you evaluate if an in-place upgra
1414

1515
Find the diff between bootkube assets generated for the existing cluster version and the desired version. This depends on the tool used to generate assets:
1616

17-
* Github [compare](https://github.com/kubernetes-incubator/bootkube/compare/v0.5.0...v0.5.1) changes between the existing and desired versions and infer the appropriate cluster changes.
18-
* [bootkube render](https://github.com/kubernetes-incubator/bootkube) - Install the `bootkube` binaries for the existing and desired versions. Render assets to different locations with each binary and diff the assets.
17+
* Github [compare](https://github.com/kubernetes-sigs/bootkube/compare/v0.5.0...v0.5.1) changes between the existing and desired versions and infer the appropriate cluster changes.
18+
* [bootkube render](https://github.com/kubernetes-sigs/bootkube) - Install the `bootkube` binaries for the existing and desired versions. Render assets to different locations with each binary and diff the assets.
1919
* [External Tools](users-integrations.md) - Check the docs for the external tool and compare assets generated for each version.
2020

2121
In simple cases, you may only need to bump the version of a few images. In more complex cases, there may be entirely new components, configuration, or flags.

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export PATH:=$(PATH):$(PWD)
55
LOCAL_OS:=$(shell uname | tr A-Z a-z)
66
GOFILES:=$(shell find . -name '*.go' ! -path './vendor/*')
77
VENDOR_GOFILES ?= $(shell find vendor -name '*.go')
8-
LDFLAGS=-X github.com/kubernetes-incubator/bootkube/pkg/version.Version=$(shell $(CURDIR)/build/git-version.sh)
8+
LDFLAGS=-X github.com/kubernetes-sigs/bootkube/pkg/version.Version=$(shell $(CURDIR)/build/git-version.sh)
99
TERRAFORM:=$(shell command -v terraform 2> /dev/null)
1010

1111
all: \
@@ -48,7 +48,7 @@ _output/bin/%: GOARCH=$(word 2, $(subst /, ,$*))
4848
_output/bin/%: GOARCH:=amd64 # default to amd64 to support release scripts
4949
_output/bin/%: $(GOFILES) $(VENDOR_GOFILES)
5050
mkdir -p $(dir $@)
51-
GOOS=$(GOOS) GOARCH=$(GOARCH) go build $(GOFLAGS) -ldflags "$(LDFLAGS)" -o $@ github.com/kubernetes-incubator/bootkube/cmd/$(notdir $@)
51+
GOOS=$(GOOS) GOARCH=$(GOARCH) go build $(GOFLAGS) -ldflags "$(LDFLAGS)" -o $@ github.com/kubernetes-sigs/bootkube/cmd/$(notdir $@)
5252

5353
_output/release/bootkube.tar.gz: _output/bin/linux/bootkube _output/bin/darwin/bootkube _output/bin/linux/checkpoint
5454
mkdir -p $(dir $@)

README.md

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Bootkube
1+
# Bootkube
22

33
[![Build Status](https://travis-ci.org/kubernetes-incubator/bootkube.svg?branch=master)](https://travis-ci.org/kubernetes-incubator/bootkube)
4-
[![GoDoc](https://godoc.org/github.com/kubernetes-incubator/bootkube?status.svg)](https://godoc.org/github.com/kubernetes-incubator/bootkube)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/kubernetes-incubator/bootkube)](https://goreportcard.com/report/github.com/kubernetes-incubator/bootkube)
4+
[![GoDoc](https://godoc.org/github.com/kubernetes-sigs/bootkube?status.svg)](https://godoc.org/github.com/kubernetes-sigs/bootkube)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/kubernetes-sigs/bootkube)](https://goreportcard.com/report/github.com/kubernetes-sigs/bootkube)
66

77
Bootkube is a tool for launching self-hosted Kubernetes clusters.
88

@@ -12,16 +12,16 @@ Additionally, bootkube can be used to generate all of the necessary assets for u
1212

1313
## Details of self-hosting
1414

15-
* [KubeCon self-hosted presentation video](https://www.youtube.com/watch?v=EbNxGK9MwN4)
16-
* [Kubernetes self-hosted design document](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/cluster-lifecycle/self-hosted-kubernetes.md)
15+
- [KubeCon self-hosted presentation video](https://www.youtube.com/watch?v=EbNxGK9MwN4)
16+
- [Kubernetes self-hosted design document](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/cluster-lifecycle/self-hosted-kubernetes.md)
1717

1818
## Guides
1919

20-
* [GCE Quickstart](hack/quickstart/quickstart-gce.md)
21-
* [AWS Quickstart](hack/quickstart/quickstart-aws.md)
22-
* [Bare-Metal](https://github.com/coreos/matchbox/tree/master/examples/terraform/bootkube-install)
23-
* [Vagrant Single-Node](hack/single-node/README.md)
24-
* [Vagrant Multi-Node](hack/multi-node/README.md)
20+
- [GCE Quickstart](hack/quickstart/quickstart-gce.md)
21+
- [AWS Quickstart](hack/quickstart/quickstart-aws.md)
22+
- [Bare-Metal](https://github.com/coreos/matchbox/tree/master/examples/terraform/bootkube-install)
23+
- [Vagrant Single-Node](hack/single-node/README.md)
24+
- [Vagrant Multi-Node](hack/multi-node/README.md)
2525

2626
## Usage
2727

@@ -64,6 +64,7 @@ bootkube start --asset-dir=my-cluster
6464
```
6565

6666
When `bootkube start` is creating Kubernetes resources from manifests, the following order is used:
67+
6768
1. Any `Namespace` objects are created, in lexicographical order.
6869
1. Any `CustomResourceDefinition` objects are created, in lexicographical order.
6970
1. Any remaining resources are created, in lexicographical order.
@@ -86,7 +87,7 @@ You can find us at the `#bootkube` channel on [Kubernetes slack][slack].
8687

8788
## Related Links
8889

89-
* [Users and Integrations](Documentation/users-integrations.md)
90+
- [Users and Integrations](Documentation/users-integrations.md)
9091

9192
## License
9293

RELEASING.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,16 @@ Eventually we might want to consider moving the checkpointer to its own repo. Th
3232
However, this should also be balanced against the longer-term goal, which would be that checkpointing is natively supported in the kubelet.
3333

3434
For some past discussions related to these topics, see:
35+
3536
- https://github.com/kubernetes/kubeadm/issues/131
3637
- https://github.com/kubernetes/kubernetes/issues/489
37-
- https://github.com/kubernetes-incubator/bootkube/issues/424
38+
- https://github.com/kubernetes-sigs/bootkube/issues/424
3839

3940
## Updating Kubernetes Version
4041

4142
### Updating Kubernetes vendor code
4243

43-
Vendoring currently relies on the [dep](https://github.com/golang/dep) tool.
44+
Vendoring currently relies on the [dep](https://github.com/golang/dep) tool.
4445

4546
- Update pinned versions in `Gopkg.toml`
4647
- Run `make vendor`
@@ -50,14 +51,14 @@ Note that we require all dependencies be recorded `Gopkg.toml`, even transitive
5051
### Updating hyperkube image / Kubernetes version
5152

5253
- Update hyperkube image for manifests in templates:
53-
- `pkg/asset/internal/templates.go`
54+
- `pkg/asset/internal/templates.go`
5455
- Update conformance test version: (`CONFORMANCE_VERSION`)
55-
- `hack/tests/conformance-test.sh`
56+
- `hack/tests/conformance-test.sh`
5657
- Update on-host kubelet versions (`KUBELET_IMAGE_TAG`)
57-
- `hack/multi-node/user-data.sample`
58-
- `hack/single-node/user-data.sample`
59-
- `hack/quickstart/kubelet.master`
60-
- `hack/quickstart/kubelet.worker`
58+
- `hack/multi-node/user-data.sample`
59+
- `hack/single-node/user-data.sample`
60+
- `hack/quickstart/kubelet.master`
61+
- `hack/quickstart/kubelet.worker`
6162

6263
## Run conformance test
6364

@@ -121,4 +122,3 @@ BUILD_IMAGE=checkpoint PUSH_IMAGE=true ./build/build-image.sh
121122
In `pkg/asset/images.go` change:
122123

123124
`PodCheckpointer` in `DefaultImages` to use the image built in previous step.
124-

ROADMAP.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
## v1.0.0 targets
44

5-
- [ ] Recovery from etcd-backup part of e2e testing (https://github.com/kubernetes-incubator/bootkube/issues/596)
5+
- [ ] Recovery from etcd-backup part of e2e testing (https://github.com/kubernetes-sigs/bootkube/issues/596)
66
- [ ] Publicly published upstream conformance tests
77
- [ ] How-it-works documentation for bootkube
8-
- [ ] Documentation for running HA clusters (https://github.com/kubernetes-incubator/bootkube/issues/311)
9-
- [ ] Versioned configuration objects replace flags (https://github.com/kubernetes-incubator/bootkube/issues/565)
8+
- [ ] Documentation for running HA clusters (https://github.com/kubernetes-sigs/bootkube/issues/311)
9+
- [ ] Versioned configuration objects replace flags (https://github.com/kubernetes-sigs/bootkube/issues/565)
1010

1111
## Upstream Features (as available)
1212

0 commit comments

Comments
 (0)