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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [24.11.1-rc2] - 2024-12-12

### Fixed

- Helm chart: The secret migration job can be omitted via Helm values ([#536]).
- Helm chart: The tag of the tools image used for the secret migration job can
be changed in the Helm values and defaults now to 1.0.0-stackable24.11.0
rather than being hard-coded to 1.0.0-stackable24.7.0 ([#536]).

[#536]: https://github.com/stackabletech/secret-operator/pull/536

## [24.11.1-rc1] - 2024-12-06

## [24.11.0] - 2024-11-18
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default-members = ["rust/operator-binary"]
resolver = "2"

[workspace.package]
version = "24.11.1-rc1"
version = "24.11.1-rc2"
authors = ["Stackable GmbH <info@stackable.tech>"]
license = "OSL-3.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/secret-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: secret-operator
version: "24.11.1-rc1"
appVersion: "24.11.1-rc1"
version: "24.11.1-rc2"
appVersion: "24.11.1-rc2"
description: The Stackable Operator for Stackable Secret Operator
home: https://github.com/stackabletech/secret-operator
maintainers:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
{{ if .Values.secretMigrationJob.enabled -}}
# Migrates the TLS CA key pair from the hard-coded default namespace to the operator namespace
# See https://github.com/stackabletech/secret-operator/issues/453
apiVersion: batch/v1
Expand Down Expand Up @@ -30,7 +31,7 @@ spec:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: migrate-secret
image: "{{ .Values.secretMigrationJob.image.repository }}:1.0.0-stackable24.7.0"
image: "{{ .Values.secretMigrationJob.image.repository }}:{{ .Values.secretMigrationJob.image.tag }}"
imagePullPolicy: {{ .Values.secretMigrationJob.image.pullPolicy }}
resources:
{{ .Values.secretMigrationJob.resources | toYaml | nindent 12 }}
Expand All @@ -53,3 +54,4 @@ spec:
fi
fi
restartPolicy: Never
{{- end }}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
{{ if .Values.secretMigrationJob.enabled -}}
apiVersion: v1
kind: ServiceAccount
metadata:
Expand Down Expand Up @@ -53,4 +54,5 @@ rules:
- watch
- create
- patch
- update
- update
{{- end }}
2 changes: 2 additions & 0 deletions deploy/helm/secret-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ image:
pullSecrets: []

secretMigrationJob:
enabled: true
image:
repository: docker.stackable.tech/stackable/tools
tag: 1.0.0-stackable24.11.0
pullPolicy: IfNotPresent
resources:
requests:
Expand Down
6 changes: 3 additions & 3 deletions tests/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ releases:
description: Integration test
products:
commons:
operatorVersion: 24.11.1-rc1
operatorVersion: 24.11.1-rc2
secret:
operatorVersion: 24.11.1-rc1
operatorVersion: 24.11.1-rc2
listener:
operatorVersion: 24.11.1-rc1
operatorVersion: 24.11.1-rc2
Loading