Skip to content
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
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
outputs:
BUILD_DATE: ${{ steps.args.outputs.BUILD_DATE }}
VERSION: ${{ steps.args.outputs.VERSION }}
DEFAULT_BRANCH: ${{ steps.args.outputs.DEFAULT_BRANCH }}
RELEASE_ARGS: ${{ steps.args.outputs.RELEASE_ARGS }}
steps:
- name: Checkout
Expand Down Expand Up @@ -52,6 +53,7 @@ jobs:

echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT
echo "DEFAULT_BRANCH=${VERSION%-bandwidth.*}" >> $GITHUB_OUTPUT
echo "RELEASE_ARGS=${RELEASE_ARGS}" >> $GITHUB_OUTPUT

release:
Expand Down Expand Up @@ -141,7 +143,7 @@ jobs:
with:
fetch-depth: 0
token: "${{ secrets.GHA_TOKEN }}"
ref: "band/${{ needs.args.outputs.VERSION }}"
ref: "band/${{ needs.args.outputs.DEFAULT_BRANCH }}"

- name: Configure Git
run: |
Expand Down Expand Up @@ -175,7 +177,7 @@ jobs:
with:
fetch-depth: 0
token: "${{ secrets.GHA_TOKEN }}"
ref: "${{ github.event.repository.default_branch }}"
ref: "band/${{ needs.args.outputs.DEFAULT_BRANCH }}"

- name: Configure Git
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ endif
SHELL = /usr/bin/env bash -o pipefail
.SHELLFLAGS = -ec

VERSION ?= 26.6.0-bandwidth.2
VERSION ?= 26.6.0-bandwidth.3

# mariadb-operator
IMG_NAME ?= ghcr.io/mariadb-operator/mariadb-operator
Expand Down
2 changes: 1 addition & 1 deletion docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</tr>
<tr>
<td>MariaDB Operator</td>
<td><code>ghcr.io/mariadb-operator/mariadb-operator:26.6.0-bandwidth.2</code></td>
<td><code>ghcr.io/mariadb-operator/mariadb-operator:26.6.0-bandwidth.3</code></td>
<td><code>amd64</code> <code>arm64</code></td>
</tr>
</tbody>
Expand Down
4 changes: 2 additions & 2 deletions examples/manifests/mariadb_replication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ spec:
# syncBinlog: 1
# Init container that cooperates with mariadb-operator.
# initContainer:
# image: ghcr.io/mariadb-operator/mariadb-operator:26.6.0-bandwidth.2
# image: ghcr.io/mariadb-operator/mariadb-operator:26.6.0-bandwidth.3
# Agent sidecar that cooperates with mariadb-operator.
# agent:
# image: ghcr.io/mariadb-operator/mariadb-operator:26.6.0-bandwidth.2
# image: ghcr.io/mariadb-operator/mariadb-operator:26.6.0-bandwidth.3

service:
type: LoadBalancer
Expand Down
Loading