Skip to content

Commit 5fdcd9e

Browse files
authored
Merge branch 'main' into chore/switch-to-oci-repo
2 parents 17940d3 + 569e422 commit 5fdcd9e

File tree

8 files changed

+10
-15
lines changed

8 files changed

+10
-15
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ jobs:
356356
# For PRs to be merged against a release branch, use the version that has already been set in the calling script.
357357
# We can't rely on cargo set-version here as we will break semver rules when changing the version to make it
358358
# specific to this PR e.g. 1.2.0 --> 1.2.0-pr678, so set it manually.
359-
if: ${{ github.event_name == 'pull_request' && github.ref != 'refs/heads/main' }}
359+
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref != 'main' }}
360360
env:
361361
PR_NUMBER: ${{ github.event.pull_request.number }}
362362
shell: bash
@@ -440,7 +440,7 @@ jobs:
440440
# For PRs to be merged against a release branch, use the version that has already been set in the calling script.
441441
# We can't rely on cargo set-version here as we will break semver rules when changing the version to make it
442442
# specific to this PR e.g. 1.2.0 --> 1.2.0-pr678, so set it manually.
443-
if: ${{ github.event_name == 'pull_request' && github.ref != 'refs/heads/main' }}
443+
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref != 'main' }}
444444
env:
445445
PR_NUMBER: ${{ github.event.pull_request.number }}
446446
shell: bash

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,19 @@
99
- Run a `containerdebug` process in the background of each HBase container to collect debugging information ([#605]).
1010
- Aggregate emitted Kubernetes events on the CustomResources ([#612]).
1111

12+
[#598]: https://github.com/stackabletech/hbase-operator/pull/598
13+
[#605]: https://github.com/stackabletech/hbase-operator/pull/605
14+
[#612]: https://github.com/stackabletech/hbase-operator/pull/612
15+
16+
## [24.11.1] - 2025-01-09
17+
1218
### Fixed
1319

1420
- BREAKING: Use distinct ServiceAccounts for the Stacklets, so that multiple Stacklets can be
1521
deployed in one namespace. Existing Stacklets will use the newly created ServiceAccounts after
1622
restart ([#594]).
1723

1824
[#594]: https://github.com/stackabletech/hbase-operator/pull/594
19-
[#598]: https://github.com/stackabletech/hbase-operator/pull/598
20-
[#605]: https://github.com/stackabletech/hbase-operator/pull/605
21-
[#612]: https://github.com/stackabletech/hbase-operator/pull/612
2225

2326
## [24.11.0] - 2024-11-18
2427

docs/modules/hbase/examples/rego/hbase.rego

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package hbase
22

3-
import rego.v1
4-
53
default allow := false
64
default matches_identity(identity) := false
75

docs/modules/hbase/examples/rego/hbase_test.rego

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package hbase
22

3-
import rego.v1
4-
53
test_permission_admin if {
64
allow with input as {
75
"callerUgi" : {

docs/modules/hbase/examples/usage-guide/hbase-regorules.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ data:
99
hdfs.rego: |
1010
package hbase
1111
12-
import rego.v1
13-
1412
default allow = true

docs/modules/hbase/pages/usage-guide/security.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ The basic structure of this rego rule is shown below.
138138
----
139139
package hbase
140140
141-
import rego.v1
141+
142142
143143
# Turn off access by default.
144144
default allow := false

tests/templates/kuttl/opa/12-rego-rules.txt.j2

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ data:
99
hbase.rego: |
1010
package hbase
1111

12-
import rego.v1
13-
1412
default allow := false
1513
default matches_identity(identity) := false
1614

tests/test-definition.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dimensions:
3535
- 1.21.1
3636
- name: opa
3737
values:
38-
- 0.67.1
38+
- 1.0.0
3939
# Used for zookeeper, hdfs and hbase
4040
- name: listener-class
4141
values:

0 commit comments

Comments
 (0)