Skip to content

Commit be61609

Browse files
committed
test binary and container image redirects and docs
Signed-off-by: hasheddan <georgedanielmangum@gmail.com>
1 parent de03361 commit be61609

File tree

3 files changed

+57
-0
lines changed

3 files changed

+57
-0
lines changed

docs/book/src/SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
- [RBAC](./reference/markers/rbac.md)
6868

6969
- [controller-gen CLI](./reference/controller-gen.md)
70+
- [Artifacts](./reference/artifacts.md)
7071

7172
---
7273

docs/book/src/reference/artifacts.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Artifacts
2+
3+
Kubebuilder publishes test binaries and container images in addition
4+
to the main binary releases.
5+
6+
## Test Binaries
7+
8+
You can find all of the test binaries at `https://go.kubebuilder.io/test`.
9+
You can find individual test binaries at `https://go.kubebuilder.io/test/${version}/${os}/${arch}`.
10+
11+
## Container Images
12+
13+
You can find all container images for your os at `https://go.kubebuilder.io/images/${os}`.
14+
You can find individual container images at `https://go.kubebuilder.io/images/:os/:version`.

netlify.toml

+42
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,48 @@
6767
status = 302
6868
force = true
6969

70+
[[redirects]]
71+
from = "https://go.kubebuilder.io/test"
72+
to = "https://console.cloud.google.com/storage/browser/kubebuilder-tools"
73+
status = 302
74+
force = true
75+
76+
[[redirects]]
77+
from = "https://go.kubebuilder.io/test/:version"
78+
to = "https://console.cloud.google.com/storage/browser/kubebuilder-tools/?prefix=kubebuilder-tools-:version"
79+
status = 302
80+
force = true
81+
82+
[[redirects]]
83+
from = "https://go.kubebuilder.io/test/:version/:os"
84+
to = "https://console.cloud.google.com/storage/browser/_details/kubebuilder-tools/kubebuilder-tools-:version-:os-amd64.tar.gz"
85+
status = 302
86+
force = true
87+
88+
[[redirects]]
89+
from = "https://go.kubebuilder.io/test/:version/:os/:arch"
90+
to = "https://console.cloud.google.com/storage/browser/_details/kubebuilder-tools/kubebuilder-tools-:version-:os-:arch.tar.gz"
91+
status = 302
92+
force = true
93+
94+
[[redirects]]
95+
from = "https://go.kubebuilder.io/images"
96+
to = "gcr.io/kubebuilder"
97+
status = 302
98+
force = true
99+
100+
[[redirects]]
101+
from = "https://go.kubebuilder.io/images/:os"
102+
to = "gcr.io/kubebuilder/thirdparty-:os"
103+
status = 302
104+
force = true
105+
106+
[[redirects]]
107+
from = "https://go.kubebuilder.io/images/:os/:version"
108+
to = "gcr.io/kubebuilder/thirdparty-:os::version"
109+
status = 302
110+
force = true
111+
70112
# TODO(directxman12): change this to standard kustomize when the next version is released (2.1.0)
71113
[[redirects]]
72114
from = "https://go.kubebuilder.io/kustomize/:os/:arch"

0 commit comments

Comments
 (0)