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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,14 @@ All notable changes to this project will be documented in this file.
- Made RSA key length configurable for certificates issued by cert-manager ([#528]).
- Kerberos principal backends now also provision principals for IP address, not just DNS hostnames ([#552]).

### Changed

- Default to OCI for image metadata ([#544]).

[#528]: https://github.com/stackabletech/secret-operator/pull/528
[#548]: https://github.com/stackabletech/secret-operator/pull/548
[#552]: https://github.com/stackabletech/secret-operator/pull/552
[#544]: https://github.com/stackabletech/secret-operator/pull/544

## [24.11.1] - 2025-01-10

Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

14 changes: 7 additions & 7 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 @@ -37,7 +37,7 @@ serde_json = "1.0"
serde_yaml = "0.9"
snafu = "0.8"
socket2 = { version = "0.5", features = ["all"] }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.84.1", features = ["time"] }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.85.0", features = ["time"] }
strum = { version = "0.26", features = ["derive"] }
sys-mount = { version = "3.0", default-features = false }
tempfile = "3.12"
Expand Down
6 changes: 3 additions & 3 deletions crate-hashes.json

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

6 changes: 3 additions & 3 deletions deploy/helm/secret-operator/values.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Default values for secret-operator.
---
image:
repository: docker.stackable.tech/stackable/secret-operator
repository: oci.stackable.tech/sdp/secret-operator
pullPolicy: IfNotPresent
pullSecrets: []

csiProvisioner:
image:
repository: docker.stackable.tech/k8s/sig-storage/csi-provisioner
repository: oci.stackable.tech/sdp/sig-storage/csi-provisioner
tag: v5.1.0
pullPolicy: IfNotPresent
resources:
Expand All @@ -19,7 +19,7 @@ csiProvisioner:
memory: 128Mi
csiNodeDriverRegistrar:
image:
repository: docker.stackable.tech/k8s/sig-storage/csi-node-driver-registrar
repository: oci.stackable.tech/sdp/sig-storage/csi-node-driver-registrar
tag: v2.13.0
pullPolicy: IfNotPresent
resources:
Expand Down
2 changes: 1 addition & 1 deletion tests/templates/kuttl/cert-manager-tls/consumer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
spec:
containers:
- name: consumer
image: docker.stackable.tech/stackable/testing-tools:0.2.0-stackable0.0.0-dev
image: oci.stackable.tech/sdp/testing-tools:0.2.0-stackable0.0.0-dev
command:
- bash
args:
Expand Down
2 changes: 1 addition & 1 deletion tests/templates/kuttl/kerberos-ad/kinit-client.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
spec:
containers:
- name: client
image: docker.stackable.tech/stackable/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
image: oci.stackable.tech/sdp/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
command:
- bash
args:
Expand Down
8 changes: 4 additions & 4 deletions tests/templates/kuttl/kerberos/01-install-kdc.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
runAsUser: 0
initContainers:
- name: init
image: docker.stackable.tech/stackable/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
image: oci.stackable.tech/sdp/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
args:
- sh
- -euo
Expand All @@ -44,7 +44,7 @@ spec:
name: data
containers:
- name: kdc
image: docker.stackable.tech/stackable/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
image: oci.stackable.tech/sdp/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
args:
- krb5kdc
- -n
Expand All @@ -57,7 +57,7 @@ spec:
- mountPath: /var/kerberos/krb5kdc
name: data
- name: kadmind
image: docker.stackable.tech/stackable/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
image: oci.stackable.tech/sdp/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
args:
- kadmind
- -nofork
Expand All @@ -70,7 +70,7 @@ spec:
- mountPath: /var/kerberos/krb5kdc
name: data
- name: client
image: docker.stackable.tech/stackable/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
image: oci.stackable.tech/sdp/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
tty: true
stdin: true
env:
Expand Down
2 changes: 1 addition & 1 deletion tests/templates/kuttl/kerberos/kinit-client.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ spec:
serviceAccount: integration-tests-sa
containers:
- name: client
image: docker.stackable.tech/stackable/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
image: oci.stackable.tech/sdp/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
command:
- bash
args:
Expand Down
2 changes: 1 addition & 1 deletion tests/templates/kuttl/listener/02-client.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
serviceAccount: client-sa
containers:
- name: client
image: docker.stackable.tech/stackable/testing-tools:0.2.0-stackable0.0.0-dev
image: oci.stackable.tech/sdp/testing-tools:0.2.0-stackable0.0.0-dev
command:
- sh
args:
Expand Down
2 changes: 1 addition & 1 deletion tests/templates/kuttl/tls/consumer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
spec:
containers:
- name: consumer
image: docker.stackable.tech/stackable/testing-tools:0.2.0-stackable0.0.0-dev
image: oci.stackable.tech/sdp/testing-tools:0.2.0-stackable0.0.0-dev
command:
- bash
args:
Expand Down