Skip to content

Commit a4e4f94

Browse files
committed
[chore]: emulate private registry in private network
Signed-off-by: Alexey Paschenko <[email protected]>
1 parent e88df4a commit a4e4f94

12 files changed

+73
-9
lines changed

.github/ci_templates/e2e_tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ run: |
255255
-e LAYOUT_YANDEX_SERVICE_ACCOUNT_KEY_JSON=${LAYOUT_YANDEX_SERVICE_ACCOUNT_KEY_JSON:-not_provided} \
256256
{!{- else if or (eq $provider "openstack") (eq $provider "static") }!}
257257
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
258+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
258259
{!{- else if eq $provider "vsphere" }!}
259260
-e LAYOUT_VSPHERE_PASSWORD=${LAYOUT_VSPHERE_PASSWORD:-not_provided} \
260261
-e LAYOUT_VSPHERE_BASE_DOMAIN=${LAYOUT_VSPHERE_BASE_DOMAIN:-not_provided} \

.github/ci_templates/helper_jobs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ pull_request_info:
139139
repo: context.repo.repo,
140140
commit_sha: context.sha
141141
});
142-
if (response.status !== 200 || !response.data || response.data.length === 0) {
142+
if (response.status !== 200 || !rgesponse.data || response.data.length === 0) {
143143
return core.setFailed(`Bad response on listing PRs for commit ${context.sha}: ${JSON.stringify(response)}`);
144144
}
145145
// Get first associated pr.

.github/workflows/build-and-test_dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
repo: context.repo.repo,
9494
commit_sha: context.sha
9595
});
96-
if (response.status !== 200 || !response.data || response.data.length === 0) {
96+
if (response.status !== 200 || !rgesponse.data || response.data.length === 0) {
9797
return core.setFailed(`Bad response on listing PRs for commit ${context.sha}: ${JSON.stringify(response)}`);
9898
}
9999
// Get first associated pr.

.github/workflows/e2e-abort-openstack.yml

+6
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ jobs:
321321
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
322322
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
323323
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
324+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
324325
-e USER_RUNNER_ID=${user_runner_id} \
325326
-v $(pwd)/testing:/deckhouse/testing \
326327
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -609,6 +610,7 @@ jobs:
609610
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
610611
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
611612
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
613+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
612614
-e USER_RUNNER_ID=${user_runner_id} \
613615
-v $(pwd)/testing:/deckhouse/testing \
614616
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -897,6 +899,7 @@ jobs:
897899
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
898900
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
899901
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
902+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
900903
-e USER_RUNNER_ID=${user_runner_id} \
901904
-v $(pwd)/testing:/deckhouse/testing \
902905
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -1185,6 +1188,7 @@ jobs:
11851188
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
11861189
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
11871190
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1191+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
11881192
-e USER_RUNNER_ID=${user_runner_id} \
11891193
-v $(pwd)/testing:/deckhouse/testing \
11901194
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -1473,6 +1477,7 @@ jobs:
14731477
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
14741478
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
14751479
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1480+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
14761481
-e USER_RUNNER_ID=${user_runner_id} \
14771482
-v $(pwd)/testing:/deckhouse/testing \
14781483
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -1761,6 +1766,7 @@ jobs:
17611766
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
17621767
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
17631768
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1769+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
17641770
-e USER_RUNNER_ID=${user_runner_id} \
17651771
-v $(pwd)/testing:/deckhouse/testing \
17661772
-v $(pwd)/release.yaml:/deckhouse/release.yaml \

.github/workflows/e2e-abort-static.yml

+6
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ jobs:
321321
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
322322
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
323323
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
324+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
324325
-e USER_RUNNER_ID=${user_runner_id} \
325326
-v $(pwd)/testing:/deckhouse/testing \
326327
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -609,6 +610,7 @@ jobs:
609610
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
610611
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
611612
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
613+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
612614
-e USER_RUNNER_ID=${user_runner_id} \
613615
-v $(pwd)/testing:/deckhouse/testing \
614616
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -897,6 +899,7 @@ jobs:
897899
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
898900
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
899901
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
902+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
900903
-e USER_RUNNER_ID=${user_runner_id} \
901904
-v $(pwd)/testing:/deckhouse/testing \
902905
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -1185,6 +1188,7 @@ jobs:
11851188
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
11861189
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
11871190
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1191+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
11881192
-e USER_RUNNER_ID=${user_runner_id} \
11891193
-v $(pwd)/testing:/deckhouse/testing \
11901194
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -1473,6 +1477,7 @@ jobs:
14731477
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
14741478
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
14751479
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1480+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
14761481
-e USER_RUNNER_ID=${user_runner_id} \
14771482
-v $(pwd)/testing:/deckhouse/testing \
14781483
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -1761,6 +1766,7 @@ jobs:
17611766
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
17621767
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
17631768
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1769+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
17641770
-e USER_RUNNER_ID=${user_runner_id} \
17651771
-v $(pwd)/testing:/deckhouse/testing \
17661772
-v $(pwd)/release.yaml:/deckhouse/release.yaml \

.github/workflows/e2e-daily.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2773,6 +2773,7 @@ jobs:
27732773
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
27742774
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
27752775
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
2776+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
27762777
-e USER_RUNNER_ID=${user_runner_id} \
27772778
-v $(pwd)/testing:/deckhouse/testing \
27782779
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -2842,6 +2843,7 @@ jobs:
28422843
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
28432844
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
28442845
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
2846+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
28452847
-e USER_RUNNER_ID=${user_runner_id} \
28462848
-v $(pwd)/testing:/deckhouse/testing \
28472849
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -4167,6 +4169,7 @@ jobs:
41674169
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
41684170
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
41694171
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
4172+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
41704173
-e USER_RUNNER_ID=${user_runner_id} \
41714174
-v $(pwd)/testing:/deckhouse/testing \
41724175
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -4236,6 +4239,7 @@ jobs:
42364239
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
42374240
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
42384241
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
4242+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
42394243
-e USER_RUNNER_ID=${user_runner_id} \
42404244
-v $(pwd)/testing:/deckhouse/testing \
42414245
-v $(pwd)/release.yaml:/deckhouse/release.yaml \

.github/workflows/e2e-openstack.yml

+12
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,7 @@ jobs:
516516
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
517517
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
518518
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
519+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
519520
-e USER_RUNNER_ID=${user_runner_id} \
520521
-e CIS_ENABLED=${CIS_ENABLED} \
521522
-v $(pwd)/testing:/deckhouse/testing \
@@ -615,6 +616,7 @@ jobs:
615616
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
616617
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
617618
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
619+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
618620
-e USER_RUNNER_ID=${user_runner_id} \
619621
-v $(pwd)/testing:/deckhouse/testing \
620622
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -1016,6 +1018,7 @@ jobs:
10161018
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
10171019
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
10181020
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1021+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
10191022
-e USER_RUNNER_ID=${user_runner_id} \
10201023
-e CIS_ENABLED=${CIS_ENABLED} \
10211024
-v $(pwd)/testing:/deckhouse/testing \
@@ -1115,6 +1118,7 @@ jobs:
11151118
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
11161119
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
11171120
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1121+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
11181122
-e USER_RUNNER_ID=${user_runner_id} \
11191123
-v $(pwd)/testing:/deckhouse/testing \
11201124
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -1516,6 +1520,7 @@ jobs:
15161520
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
15171521
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
15181522
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1523+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
15191524
-e USER_RUNNER_ID=${user_runner_id} \
15201525
-e CIS_ENABLED=${CIS_ENABLED} \
15211526
-v $(pwd)/testing:/deckhouse/testing \
@@ -1615,6 +1620,7 @@ jobs:
16151620
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
16161621
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
16171622
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1623+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
16181624
-e USER_RUNNER_ID=${user_runner_id} \
16191625
-v $(pwd)/testing:/deckhouse/testing \
16201626
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -2016,6 +2022,7 @@ jobs:
20162022
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
20172023
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
20182024
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
2025+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
20192026
-e USER_RUNNER_ID=${user_runner_id} \
20202027
-e CIS_ENABLED=${CIS_ENABLED} \
20212028
-v $(pwd)/testing:/deckhouse/testing \
@@ -2115,6 +2122,7 @@ jobs:
21152122
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
21162123
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
21172124
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
2125+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
21182126
-e USER_RUNNER_ID=${user_runner_id} \
21192127
-v $(pwd)/testing:/deckhouse/testing \
21202128
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -2516,6 +2524,7 @@ jobs:
25162524
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
25172525
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
25182526
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
2527+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
25192528
-e USER_RUNNER_ID=${user_runner_id} \
25202529
-e CIS_ENABLED=${CIS_ENABLED} \
25212530
-v $(pwd)/testing:/deckhouse/testing \
@@ -2615,6 +2624,7 @@ jobs:
26152624
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
26162625
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
26172626
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
2627+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
26182628
-e USER_RUNNER_ID=${user_runner_id} \
26192629
-v $(pwd)/testing:/deckhouse/testing \
26202630
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -3016,6 +3026,7 @@ jobs:
30163026
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
30173027
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
30183028
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
3029+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
30193030
-e USER_RUNNER_ID=${user_runner_id} \
30203031
-e CIS_ENABLED=${CIS_ENABLED} \
30213032
-v $(pwd)/testing:/deckhouse/testing \
@@ -3115,6 +3126,7 @@ jobs:
31153126
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
31163127
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
31173128
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
3129+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
31183130
-e USER_RUNNER_ID=${user_runner_id} \
31193131
-v $(pwd)/testing:/deckhouse/testing \
31203132
-v $(pwd)/release.yaml:/deckhouse/release.yaml \

.github/workflows/e2e-static.yml

+12
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,7 @@ jobs:
516516
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
517517
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
518518
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
519+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
519520
-e USER_RUNNER_ID=${user_runner_id} \
520521
-e CIS_ENABLED=${CIS_ENABLED} \
521522
-v $(pwd)/testing:/deckhouse/testing \
@@ -615,6 +616,7 @@ jobs:
615616
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
616617
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
617618
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
619+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
618620
-e USER_RUNNER_ID=${user_runner_id} \
619621
-v $(pwd)/testing:/deckhouse/testing \
620622
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -1016,6 +1018,7 @@ jobs:
10161018
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
10171019
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
10181020
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1021+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
10191022
-e USER_RUNNER_ID=${user_runner_id} \
10201023
-e CIS_ENABLED=${CIS_ENABLED} \
10211024
-v $(pwd)/testing:/deckhouse/testing \
@@ -1115,6 +1118,7 @@ jobs:
11151118
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
11161119
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
11171120
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1121+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
11181122
-e USER_RUNNER_ID=${user_runner_id} \
11191123
-v $(pwd)/testing:/deckhouse/testing \
11201124
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -1516,6 +1520,7 @@ jobs:
15161520
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
15171521
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
15181522
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1523+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
15191524
-e USER_RUNNER_ID=${user_runner_id} \
15201525
-e CIS_ENABLED=${CIS_ENABLED} \
15211526
-v $(pwd)/testing:/deckhouse/testing \
@@ -1615,6 +1620,7 @@ jobs:
16151620
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
16161621
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
16171622
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
1623+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
16181624
-e USER_RUNNER_ID=${user_runner_id} \
16191625
-v $(pwd)/testing:/deckhouse/testing \
16201626
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -2016,6 +2022,7 @@ jobs:
20162022
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
20172023
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
20182024
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
2025+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
20192026
-e USER_RUNNER_ID=${user_runner_id} \
20202027
-e CIS_ENABLED=${CIS_ENABLED} \
20212028
-v $(pwd)/testing:/deckhouse/testing \
@@ -2115,6 +2122,7 @@ jobs:
21152122
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
21162123
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
21172124
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
2125+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
21182126
-e USER_RUNNER_ID=${user_runner_id} \
21192127
-v $(pwd)/testing:/deckhouse/testing \
21202128
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -2516,6 +2524,7 @@ jobs:
25162524
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
25172525
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
25182526
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
2527+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
25192528
-e USER_RUNNER_ID=${user_runner_id} \
25202529
-e CIS_ENABLED=${CIS_ENABLED} \
25212530
-v $(pwd)/testing:/deckhouse/testing \
@@ -2615,6 +2624,7 @@ jobs:
26152624
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
26162625
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
26172626
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
2627+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
26182628
-e USER_RUNNER_ID=${user_runner_id} \
26192629
-v $(pwd)/testing:/deckhouse/testing \
26202630
-v $(pwd)/release.yaml:/deckhouse/release.yaml \
@@ -3016,6 +3026,7 @@ jobs:
30163026
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
30173027
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
30183028
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
3029+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
30193030
-e USER_RUNNER_ID=${user_runner_id} \
30203031
-e CIS_ENABLED=${CIS_ENABLED} \
30213032
-v $(pwd)/testing:/deckhouse/testing \
@@ -3115,6 +3126,7 @@ jobs:
31153126
-e DHCTL_LOG_FILE="/tmp/$(basename ${dhctl_log_file})" \
31163127
-e SSH_KEY=${LAYOUT_SSH_KEY:-not_provided} \
31173128
-e LAYOUT_OS_PASSWORD=${LAYOUT_OS_PASSWORD:-not_provided} \
3129+
-e IMAGES_REPO=http://192.168.199.254:5000/sys/deckhouse-oss \
31183130
-e USER_RUNNER_ID=${user_runner_id} \
31193131
-v $(pwd)/testing:/deckhouse/testing \
31203132
-v $(pwd)/release.yaml:/deckhouse/release.yaml \

0 commit comments

Comments
 (0)