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

Fix release actions #1323

Merged
merged 2 commits into from
Aug 14, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/image-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}

- name: Push Operator to Quay.io
- name: Push Apiserver to Quay.io
anishasthana marked this conversation as resolved.
Show resolved Hide resolved
run: |
docker image tag kuberay/apiserver:${{ steps.vars.outputs.sha_short }} quay.io/kuberay/apiserver:${{ steps.vars.outputs.sha_short }};
docker push quay.io/kuberay/apiserver:${{ steps.vars.outputs.sha_short }};
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
if: contains(fromJson('["refs/heads/master"]'), github.ref)

- name: Push Operator to Quay.io
- name: Push Apiserver to Quay.io
run: |
docker image tag kuberay/apiserver:${{ steps.vars.outputs.sha_short }} quay.io/kuberay/apiserver:${{ steps.vars.outputs.sha_short }};
docker push quay.io/kuberay/apiserver:${{ steps.vars.outputs.sha_short }};
Expand Down
13 changes: 0 additions & 13 deletions docs/deploy/docker.md

This file was deleted.

21 changes: 21 additions & 0 deletions docs/deploy/images.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Container Images

Images for the various KubeRay components are published at the following locations:

1. [Quay.io](https://quay.io/organization/kuberay)
2. [DockerHub](https://hub.docker.com/u/kuberay)

We recommend using Quay.io as the primary source for images as there are image-pull restrictions on DockerHub. DockerHub allows you to pull only 100 images per 6 hour window. Refer to [DockerHub rate limiting](https://docs.docker.com/docker-hub/download-rate-limit/) for more details.

## Stable versions

For stable releases, use version tags (e.g. `quay.io/kuberay/operator:v0.6.0`).

## Master commits

The first seven characters of the git SHA specify images built from specific commits
(e.g. `quay.io/kuberay/operator:4892ac1`).

## Nightly images

The nightly tag specifies images built from the most recent master (e.g. `quay.io/kuberay/operator:nightly`).
Loading