File tree 4 files changed +36
-1
lines changed
4 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 13
13
required : false
14
14
type : string
15
15
default : ' false'
16
+ test-patched-keda :
17
+ description : ' Test patched KEDA (true/false)'
18
+ required : false
19
+ default : ' '
20
+ type : string
16
21
workflow_dispatch :
17
22
inputs :
18
23
rerunFailedOnly :
19
24
description : ' Rerun only failed jobs'
20
25
required : false
21
26
type : boolean
22
27
default : true
28
+ test-patched-keda :
29
+ description : ' Test patched KEDA (true/false)'
30
+ required : false
31
+ default : ' '
32
+ type : string
23
33
push :
24
34
branches :
25
35
- trunk
58
68
secrets : inherit
59
69
with :
60
70
release : ${{ inputs.release == 'true' }}
71
+ test-patched-keda : ${{ github.event.inputs.test-patched-keda }}
61
72
62
73
rerun-workflow-when-failure :
63
74
name : Rerun workflow when failure
Original file line number Diff line number Diff line change 13
13
required : false
14
14
type : string
15
15
default : ' false'
16
+ test-patched-keda :
17
+ description : ' Test patched KEDA (true/false)'
18
+ required : false
19
+ default : ' '
20
+ type : string
16
21
workflow_dispatch :
17
22
inputs :
18
23
request-timeout :
27
32
description : ' Test parameter for different log level'
28
33
required : false
29
34
default : ' FINE'
35
+ test-patched-keda :
36
+ description : ' Test patched KEDA (true/false)'
37
+ required : false
38
+ default : ' '
39
+ type : string
30
40
31
41
permissions :
32
42
contents : read
@@ -131,6 +141,7 @@ jobs:
131
141
SAUCE_ACCESS_KEY : ${{ secrets.SAUCE_ACCESS_KEY }}
132
142
SAUCE_USERNAME : ${{ secrets.SAUCE_USERNAME }}
133
143
SAUCE_REGION : ${{ secrets.SAUCE_REGION }}
144
+ TEST_PATCHED_KEDA : ${{ github.event.inputs.test-patched-keda }}
134
145
steps :
135
146
- name : Free Disk Space (Ubuntu)
136
147
uses : jlumbroso/free-disk-space@main
Original file line number Diff line number Diff line change 23
23
required : false
24
24
type : string
25
25
default : ' 20'
26
+ test-patched-keda :
27
+ description : ' Test patched KEDA (true/false)'
28
+ required : false
29
+ default : ' '
30
+ type : string
26
31
workflow_dispatch :
27
32
inputs :
28
33
publish-results :
40
45
required : false
41
46
type : string
42
47
default : ' 20'
48
+ test-patched-keda :
49
+ description : ' Test patched KEDA (true/false)'
50
+ required : false
51
+ default : ' '
52
+ type : string
43
53
44
54
concurrency :
45
55
group : ${{ github.workflow }}-${{ github.ref == github.ref_protected && github.run_id || github.event.pull_request.number || github.ref }}
@@ -108,6 +118,7 @@ jobs:
108
118
KUBERNETES_VERSION : ${{ matrix.k8s-version }}
109
119
HELM_VERSION : ${{ matrix.helm-version }}
110
120
DOCKER_VERSION : ${{ matrix.docker-version }}
121
+ TEST_PATCHED_KEDA : ${{ github.event.inputs.test-patched-keda }}
111
122
steps :
112
123
- name : Free Disk Space (Ubuntu)
113
124
uses : jlumbroso/free-disk-space@main
Original file line number Diff line number Diff line change @@ -465,7 +465,9 @@ elif [ "${TEST_EXISTING_KEDA}" != "true" ]; then
465
465
"
466
466
else
467
467
HELM_COMMAND_SET_IMAGES=" ${HELM_COMMAND_SET_IMAGES} \
468
- --set keda.image=null \
468
+ --set keda.image.keda.registry=ghcr.io/kedacore --set keda.image.keda.repository=keda --set keda.image.keda.tag=null \
469
+ --set keda.image.metricsApiServer.registry=ghcr.io/kedacore --set keda.image.metricsApiServer.repository=keda-metrics-apiserver --set keda.image.metricsApiServer.tag=null \
470
+ --set keda.image.webhooks.registry=ghcr.io/kedacore --set keda.image.webhooks.repository=keda-admission-webhooks --set keda.image.webhooks.tag=null \
469
471
"
470
472
fi
471
473
fi
You can’t perform that action at this time.
0 commit comments