Skip to content

Commit 8b2104c

Browse files
authored
Merge pull request #948 from hasheddan/artifact-links
test binary and container image redirects and docs
2 parents de03361 + d4e274b commit 8b2104c

File tree

3 files changed

+59
-0
lines changed

3 files changed

+59
-0
lines changed

docs/book/src/SUMMARY.md

Lines changed: 1 addition & 0 deletions
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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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-tools`.
9+
You can find individual test binaries at `https://go.kubebuilder.io/test-tools/${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+
or at `gcr.io/kubebuilder/thirdparty-${os}`.
15+
You can find individual container images at `https://go.kubebuilder.io/images/${os}/${version}`
16+
or at `gcr.io/kubebuilder/thirdparty-${os}:${version}`.

netlify.toml

Lines changed: 42 additions & 0 deletions
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-tools"
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-tools/: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-tools/: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-tools/: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)