File tree 3 files changed +4
-7
lines changed
3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 28
28
- name : Run Hot Rod Rolling Upgrade Tests
29
29
run : make hotrod-upgrade-test
30
30
env :
31
- SUBSCRIPTION_STARTING_CSV : infinispan-operator.v2.3.7
31
+ SUBSCRIPTION_STARTING_CSV : infinispan-operator.v2.3.2
32
32
TESTING_OPERAND_IGNORE_LIST : ${{ inputs.skipList }}
33
33
INFINISPAN_CPU : 500m # prevent insufficient cpu error on test-rolling-upgrade pod start
34
34
Original file line number Diff line number Diff line change @@ -125,9 +125,7 @@ jobs:
125
125
exit 1
126
126
fi
127
127
else
128
- # Start on at least 2.3.7 as we need to start on a server version greater than 14.0.22.Final to prevent
129
- # the internal .LOCKS cache remaining DEGRADED indefinitely https://issues.redhat.com/browse/ISPN-15191
130
- export SUBSCRIPTION_STARTING_CSV=infinispan-operator.v2.3.7
128
+ export SUBSCRIPTION_STARTING_CSV=infinispan-operator.v2.3.2
131
129
fi
132
130
make upgrade-test
133
131
env :
Original file line number Diff line number Diff line change @@ -31,9 +31,8 @@ func TestOperandUpgrades(t *testing.T) {
31
31
32
32
startingOperandIdx := - 1
33
33
for i , op := range versionManager .Operands {
34
- // We must start on a server version greater than 14.0.22.Final to prevent
35
- // the internal .LOCKS cache remaining DEGRADED indefinitely https://issues.redhat.com/browse/ISPN-15191
36
- if op .UpstreamVersion .Major == 14 && op .UpstreamVersion .Patch >= 22 || op .UpstreamVersion .Major > 14 {
34
+ // We must start at Infinispan 14.0.8 or higher due to ISPN-12224
35
+ if (op .UpstreamVersion .Major == 14 && op .UpstreamVersion .Patch >= 8 ) || op .UpstreamVersion .Major > 14 {
37
36
startingOperandIdx = i
38
37
break
39
38
}
You can’t perform that action at this time.
0 commit comments