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
2 changes: 1 addition & 1 deletion .github/workflows/branch-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.24'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.24'

Expand Down
15 changes: 14 additions & 1 deletion .github/workflows/release-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ name: release-pipeline
on:
push:
tags:
- 'v*'
- 'v[0-9]+.[0-9]+.[0-9]+'

permissions:
contents: write

jobs:
build:
Expand Down Expand Up @@ -48,3 +51,13 @@ jobs:
${{ vars.DOCKER_USERNAME }}/valkey-operator:${{ env.RELEASE_VERSION }}
ghcr.io/${{ github.repository_owner }}/valkey-operator:${{ env.RELEASE_VERSION }}
platforms: linux/amd64,linux/arm64

release:
name: Create GitHub Release
runs-on: ubuntu-latest
needs: build
steps:
- name: Create Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
2 changes: 1 addition & 1 deletion internal/ops/sentinel/actor/actor_ensure_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func (a *actorEnsureResource) ensureStatefulSet(ctx context.Context, inst types.
logger.Error(err, "generate secret sig failed")
return actor.NewResultWithError(ops.CommandAbort, err)
}
sts.Spec.Template.Labels[builder.ChecksumKey("secret")] = secretSig
sts.Spec.Template.Annotations[builder.ChecksumKey("secret")] = secretSig
}

configName := sentinelbuilder.SentinelConfigMapName(sen.Name)
Expand Down
Loading