diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b0ba89e3..25d158e7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,7 @@ jobs: - name: Check CI results run: grep Fail CI/results.markdown && false || true - name: Build the Docker images - run: docker build --no-cache -t quay.io/chaos-kubox/krkn containers/ + run: docker build --no-cache -t quay.io/redhat-chaos/krkn containers/ - name: Login in quay if: github.ref == 'refs/heads/main' && github.event_name == 'push' run: docker login quay.io -u ${QUAY_USER} -p ${QUAY_TOKEN} @@ -61,7 +61,7 @@ jobs: QUAY_TOKEN: ${{ secrets.QUAY_TOKEN_1 }} - name: Push the Docker images if: github.ref == 'refs/heads/main' && github.event_name == 'push' - run: docker push quay.io/chaos-kubox/krkn + run: docker push quay.io/redhat-chaos/krkn - name: Rebuild krkn-hub if: github.ref == 'refs/heads/main' && github.event_name == 'push' uses: redhat-chaos/actions/krkn-hub@main diff --git a/README.md b/README.md index 9cb738e7..6a58f474 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Krkn aka Kraken -[![Docker Repository on Quay](https://quay.io/repository/chaos-kubox/krkn/status "Docker Repository on Quay")](https://quay.io/repository/chaos-kubox/krkn?tab=tags&tag=latest) +[![Docker Repository on Quay](https://quay.io/repository/redhat-chaos/krkn/status "Docker Repository on Quay")](https://quay.io/repository/redhat-chaos/krkn?tab=tags&tag=latest) ![Krkn logo](media/logo.png) diff --git a/containers/README.md b/containers/README.md index f99d7105..ab19de48 100644 --- a/containers/README.md +++ b/containers/README.md @@ -3,7 +3,7 @@ -Container image gets automatically built by quay.io at [Kraken image](https://quay.io/chaos-kubox/krkn). +Container image gets automatically built by quay.io at [Kraken image](https://quay.io/redhat-chaos/krkn). diff --git a/containers/kraken.yml b/containers/kraken.yml index d82ea77e..fecc682f 100644 --- a/containers/kraken.yml +++ b/containers/kraken.yml @@ -16,7 +16,7 @@ spec: - name: kraken securityContext: privileged: true - image: quay.io/chaos-kubox/krkn + image: quay.io/redhat-chaos/krkn command: ["/bin/sh", "-c"] args: ["python3.9 run_kraken.py -c config/config.yaml"] volumeMounts: diff --git a/docs/installation.md b/docs/installation.md index 4513083f..f1a1dbb5 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -38,17 +38,17 @@ $ python3.9 run_kraken.py --config ### Run containerized version Assuming that the latest docker ( 17.05 or greater with multi-build support ) is installed on the host, run: ``` -$ docker pull quay.io/chaos-kubox/krkn:latest -$ docker run --name=kraken --net=host -v :/root/.kube/config:Z -v :/root/kraken/config/config.yaml:Z -d quay.io/chaos-kubox/krkn:latest -$ docker run --name=kraken --net=host -v :/root/.kube/config:Z -v :/root/kraken/config/config.yaml:Z -v :/root/kraken/scenarios:Z -d quay.io/chaos-kubox/krkn:latest #custom or tweaked scenario configs +$ docker pull quay.io/redhat-chaos/krkn:latest +$ docker run --name=kraken --net=host -v :/root/.kube/config:Z -v :/root/kraken/config/config.yaml:Z -d quay.io/redhat-chaos/krkn:latest +$ docker run --name=kraken --net=host -v :/root/.kube/config:Z -v :/root/kraken/config/config.yaml:Z -v :/root/kraken/scenarios:Z -d quay.io/redhat-chaos/krkn:latest #custom or tweaked scenario configs $ docker logs -f kraken ``` Similarly, podman can be used to achieve the same: ``` -$ podman pull quay.io/chaos-kubox/krkn -$ podman run --name=kraken --net=host -v :/root/.kube/config:Z -v :/root/kraken/config/config.yaml:Z -d quay.io/chaos-kubox/krkn:latest -$ podman run --name=kraken --net=host -v :/root/.kube/config:Z -v :/root/kraken/config/config.yaml:Z -v :/root/kraken/scenarios:Z -d quay.io/chaos-kubox/krkn:latest #custom or tweaked scenario configs +$ podman pull quay.io/redhat-chaos/krkn +$ podman run --name=kraken --net=host -v :/root/.kube/config:Z -v :/root/kraken/config/config.yaml:Z -d quay.io/redhat-chaos/krkn:latest +$ podman run --name=kraken --net=host -v :/root/.kube/config:Z -v :/root/kraken/config/config.yaml:Z -v :/root/kraken/scenarios:Z -d quay.io/redhat-chaos/krkn:latest #custom or tweaked scenario configs $ podman logs -f kraken ```