File tree Expand file tree Collapse file tree 8 files changed +10
-15
lines changed Expand file tree Collapse file tree 8 files changed +10
-15
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11package hbase
22
3- import rego.v1
4-
53default allow := false
64default matches_identity (identity) := false
75
Original file line number Diff line number Diff line change 11package hbase
22
3- import rego.v1
4-
53test_permission_admin if {
64 allow with input as {
75 " callerUgi" : {
Original file line number Diff line number Diff line change 99 hdfs.rego : |
1010 package hbase
1111
12- import rego.v1
13-
1412 default allow = true
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ The basic structure of this rego rule is shown below.
138138----
139139package hbase
140140
141- import rego.v1
141+
142142
143143# Turn off access by default.
144144default allow := false
Original file line number Diff line number Diff line change 99 hbase.rego: |
1010 package hbase
1111
12- import rego.v1
13-
1412 default allow := false
1513 default matches_identity(identity) := false
1614
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments