Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use k8s-release-dev instead of kubernetes-release-dev #2528

Merged
merged 1 commit into from
Jul 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/testing-pre-releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ The table below summarize the current state:
| ----------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
| **GA release** | from .deb or .rpm repository | from [github release page](https://github.com/kubernetes/kubernetes/releases) or from `gs://kubernetes-release/release/` GCS bucket | from `k8s.gcr.io` container registry or from [github release page](https://github.com/kubernetes/kubernetes/releases) |
| **alpha/beta release*** | not available. use CI/CD version "near" tag | from [github release page](https://github.com/kubernetes/kubernetes/releases) or from `gs://kubernetes-release/release/` GCS bucket | from `k8s.gcr.io` container registry or from [github release page](https://github.com/kubernetes/kubernetes/releases) |
| **CI/CD release*** | from `gs://kubernetes-release-dev/bazel/` GCS bucket (only debs, built every merge) | from `gs://kubernetes-release-dev/ci-cross/` GCS bucket (built every merge) | from `gcr.io/kubernetes-ci-images` container registry (built every few hours, not by PR) |
| **CI/CD release*** | from `gs://k8s-release-dev/bazel/` GCS bucket (only debs, built every merge) | from `gs://k8s-release-dev/ci-cross/` GCS bucket (built every merge) | from `gcr.io/kubernetes-ci-images` container registry (built every few hours, not by PR) |

[*] for alpha/beta and CI/CD currently it is not possible to have exact version number consistency for all the
components; however you can select version numbers "near to" the desired version.
Expand Down Expand Up @@ -98,19 +98,19 @@ yum install <package name>-<version number>

### Getting .deb or .rpm packages form a GCS bucket

Pre-compiled CI/CD releases of .deb or .rpm packages are deployed into the `gs://kubernetes-release-dev/bazel/`
Pre-compiled CI/CD releases of .deb or .rpm packages are deployed into the `gs://k8s-release-dev/bazel/`
GCS bucket.

To explore versions available in Google Storage buckets use:

```bash
gsutil ls gs://kubernetes-release-dev/bazel/{filter}
gsutil ls gs://k8s-release-dev/bazel/{filter}

# e.g. search all CI/CD v1.10 releases
gsutil ls -g gs://kubernetes-release-dev/bazel/v1.10*
gsutil ls -g gs://k8s-release-dev/bazel/v1.10*
```

As alternative, you can browse using <https://console.cloud.google.com/storage/browser/kubernetes-release-dev/bazel/> .
As alternative, you can browse using <https://console.cloud.google.com/storage/browser/k8s-release-dev/bazel/> .

To retrieve a pre-compiled CI/CD releases of .deb or .rpm version of kubeadm binary use:

Expand All @@ -121,7 +121,7 @@ gsutil cp gs://{bucket-name}/{release}/bin/linux/amd64 *.deb .
### Getting kubeadm binaries from a GCS bucket

Pre-compiled GA, alpha/beta versions of kubeadm binary are deployed into `gs://kubernetes-release/release/` GCS bucket,
while CI/CD versions are deployed into `gs://kubernetes-release-dev/ci-cross/` bucket.
while CI/CD versions are deployed into `gs://k8s-release-dev/ci-cross/` bucket.

To explore versions available in Google Storage buckets use:

Expand Down Expand Up @@ -159,7 +159,7 @@ For CI/CD valid version numbers are:

- prefix `ci/` followed by a semantic version number
- prefix `ci/` followed by Kubernetes release labels for CI/CD versions like e.g. `ci/latest`, `ci/latest-1`, `latest-1.10`.
See <https://console.cloud.google.com/storage/browser/kubernetes-release-dev/ci-cross/> for the full list of labels.
See <https://console.cloud.google.com/storage/browser/k8s-release-dev/ci-cross/> for the full list of labels.

If you want to retrieve manually pre-compiled/pre-built GA, alpha/beta versions of control plane images, such
images are deployed into `k8s.gcr.io` GCR registry, while CI/CD versions are deployed into
Expand Down Expand Up @@ -520,7 +520,7 @@ see [https://semver.org/](https://semver.org/) for full explanation. Briefly:
4. Then open in the browser the corresponding bucket using the address
<https://console.cloud.google.com/storage/browser/kubernetes-jenkins/shared-results/{pr-build-id};>
5. This bucket should contains a file named `bazel-build-location.txt`; inside there is the name of the GCS bucket
where CI/CD output are stored by jenkins e.g. `gs://kubernetes-release-dev/bazel/v1.9.0-alpha.0.584+0bfca758a870fc`
where CI/CD output are stored by jenkins e.g. `gs://k8s-release-dev/bazel/v1.9.0-alpha.0.584+0bfca758a870fc`

### Change the target version number when building a local release

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/packages/verify_packages_install_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ CI_DIR=/tmp/k8s-ci
mkdir -p $CI_DIR
mkdir -p /opt/cni/bin
CI_VERSION=$(curl -sSL https://dl.k8s.io/ci/latest.txt)
CI_URL="gs://kubernetes-release-dev/ci/$CI_VERSION-bazel/bin/linux/amd64"
CI_URL="gs://k8s-release-dev/ci/$CI_VERSION-bazel/bin/linux/amd64"

echo "* testing CI version $CI_VERSION"

Expand Down