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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- Helm: Allow Pod `priorityClassName` to be configured ([#664]).
- Add version `4.1.4` ([#669]).

### Changed

Expand All @@ -19,6 +20,7 @@
[#663]: https://github.com/stackabletech/superset-operator/pull/663
[#664]: https://github.com/stackabletech/superset-operator/pull/664
[#666]: https://github.com/stackabletech/superset-operator/pull/666
[#669]: https://github.com/stackabletech/superset-operator/pull/669

## [25.7.0] - 2025-07-23

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
name: config
containers:
- name: superset
image: oci.stackable.tech/sdp/superset:4.1.2-stackable0.0.0-dev
image: oci.stackable.tech/sdp/superset:4.1.4-stackable0.0.0-dev
command: [
"/bin/sh",
"-c",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
name: config
containers:
- name: superset
image: oci.stackable.tech/sdp/superset:4.1.2-stackable{{ versions.superset }}
image: oci.stackable.tech/sdp/superset:4.1.4-stackable{{ versions.superset }}
command: [
"/bin/sh",
"-c",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-superset
spec:
image:
productVersion: 4.1.2
productVersion: 4.1.4
clusterConfig:
credentialsSecret: simple-superset-credentials
nodes:
Expand Down
6 changes: 3 additions & 3 deletions docs/modules/superset/pages/usage-guide/security.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ metadata:
name: superset-with-ldap-server
spec:
image:
productVersion: 4.1.2
productVersion: 4.1.4
clusterConfig:
authentication:
- authenticationClass: ldap # <1>
Expand Down Expand Up @@ -64,7 +64,7 @@ metadata:
name: superset-with-oidc
spec:
image:
productVersion: 4.1.2
productVersion: 4.1.4
clusterConfig:
authentication:
- authenticationClass: keycloak # <1>
Expand Down Expand Up @@ -229,7 +229,7 @@ metadata:
name: superset-with-oidc
spec:
image:
productVersion: 4.1.2
productVersion: 4.1.4
clusterConfig:
authentication:
- authenticationClass: keycloak
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/superset/partials/supported-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
// This is a separate file, since it is used by both the direct Superset documentation, and the overarching
// Stackable Platform documentation.

- 4.1.2 (LTS)
- 4.1.1 (deprecated)
- 4.1.4 (LTS)
- 4.1.2 (deprecated)
- 4.0.2 (deprecated)
2 changes: 1 addition & 1 deletion examples/superset-with-ldap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ metadata:
name: superset-with-ldap-server-veri-tls
spec:
image:
productVersion: 4.1.2
productVersion: 4.1.4
clusterConfig:
authentication:
- authenticationClass: superset-with-ldap-server-veri-tls-ldap
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/crd/affinity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ mod tests {
name: simple-superset
spec:
image:
productVersion: 4.1.2
productVersion: 4.1.4
clusterConfig:
credentialsSecret: superset-db-credentials
nodes:
Expand Down
8 changes: 4 additions & 4 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ dimensions:
- name: superset
values:
- 4.0.2
- 4.1.1
- 4.1.2
- 4.1.4
# Or use a custom image:
# - 4.1.1,oci.stackable.tech/razvan/superset:4.1.1-stackable0.0.0-dev
# - 4.1.4,oci.stackable.tech/razvan/superset:4.1.4-stackable0.0.0-dev
- name: superset-latest
values:
- 4.1.2
# - 4.1.1,oci.stackable.tech/razvan/superset:4.1.1-stackable0.0.0-dev
- 4.1.4
# - 4.1.4,oci.stackable.tech/razvan/superset:4.1.4-stackable0.0.0-dev
- name: ldap-authentication
values:
- no-tls
Expand Down
Loading