@catladder/pipeline 3.30.3 → 3.30.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants.js +1 -1
- package/dist/deploy/kubernetes/mongodb.d.ts +4 -0
- package/dist/deploy/kubernetes/mongodb.js +4 -0
- package/dist/pipeline/gitlab/gitlabReleaseJobs.d.ts +2 -0
- package/dist/pipeline/gitlab/gitlabReleaseJobs.js +5 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/automatic-releases.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-execute-script-on-deploy.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-health-check-defaults.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-health-check-only-startup.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-health-check.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-http2.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-llama.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-meteor-with-worker.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-nextjs.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-with-agents.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-with-gpu.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-with-sql-legacy-jobs.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-with-sql-multiple-dbs.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +4 -2
- package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +4 -2
- package/examples/__snapshots__/custom-build-job-with-tests.test.ts.snap +4 -2
- package/examples/__snapshots__/custom-build-job.test.ts.snap +4 -2
- package/examples/__snapshots__/custom-deploy.test.ts.snap +4 -2
- package/examples/__snapshots__/custom-envs.test.ts.snap +4 -2
- package/examples/__snapshots__/custom-sbom-java.test.ts.snap +4 -2
- package/examples/__snapshots__/custom-verify-job.test.ts.snap +4 -2
- package/examples/__snapshots__/git-submodule.test.ts.snap +4 -2
- package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +4 -2
- package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +4 -2
- package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +4 -2
- package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +24 -2
- package/examples/__snapshots__/local-dot-env.test.ts.snap +4 -2
- package/examples/__snapshots__/meteor-kubernetes.test.ts.snap +24 -2
- package/examples/__snapshots__/modify-generated-files.test.ts.snap +4 -2
- package/examples/__snapshots__/modify-generated-yaml.test.ts.snap +4 -2
- package/examples/__snapshots__/multiline-var.test.ts.snap +4 -2
- package/examples/__snapshots__/native-app.test.ts.snap +4 -2
- package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +4 -2
- package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +4 -2
- package/examples/__snapshots__/override-secrets.test.ts.snap +4 -2
- package/examples/__snapshots__/rails-k8s-with-worker-dockerfile.test.ts.snap +4 -2
- package/examples/__snapshots__/rails-k8s-with-worker.test.ts.snap +4 -2
- package/examples/__snapshots__/referencing-other-vars.test.ts.snap +4 -2
- package/examples/__snapshots__/wait-for-other-deploy.test.ts.snap +4 -2
- package/examples/__snapshots__/workspace-api-www-turbo-cache.test.ts.snap +4 -2
- package/examples/__snapshots__/workspace-api-www.test.ts.snap +4 -2
- package/package.json +1 -1
- package/src/deploy/kubernetes/mongodb.ts +4 -0
- package/src/pipeline/gitlab/gitlabReleaseJobs.ts +5 -3
|
@@ -1126,7 +1126,8 @@ create release:
|
|
|
1126
1126
|
image: path/to/docker/semantic-release:the-version
|
|
1127
1127
|
script:
|
|
1128
1128
|
- semanticRelease
|
|
1129
|
-
|
|
1129
|
+
after_script:
|
|
1130
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1130
1131
|
rules:
|
|
1131
1132
|
- &a2
|
|
1132
1133
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1146,7 +1147,8 @@ create release:
|
|
|
1146
1147
|
image: path/to/docker/semantic-release:the-version
|
|
1147
1148
|
script:
|
|
1148
1149
|
- semanticRelease
|
|
1149
|
-
|
|
1150
|
+
after_script:
|
|
1151
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1150
1152
|
rules:
|
|
1151
1153
|
- *a2
|
|
1152
1154
|
- *a3
|
|
@@ -1196,7 +1196,8 @@ create release:
|
|
|
1196
1196
|
image: path/to/docker/semantic-release:the-version
|
|
1197
1197
|
script:
|
|
1198
1198
|
- semanticRelease
|
|
1199
|
-
|
|
1199
|
+
after_script:
|
|
1200
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1200
1201
|
rules:
|
|
1201
1202
|
- &a2
|
|
1202
1203
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1216,7 +1217,8 @@ create release:
|
|
|
1216
1217
|
image: path/to/docker/semantic-release:the-version
|
|
1217
1218
|
script:
|
|
1218
1219
|
- semanticRelease
|
|
1219
|
-
|
|
1220
|
+
after_script:
|
|
1221
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1220
1222
|
rules:
|
|
1221
1223
|
- *a2
|
|
1222
1224
|
- *a3
|
|
@@ -1790,7 +1790,8 @@ create release:
|
|
|
1790
1790
|
image: path/to/docker/semantic-release:the-version
|
|
1791
1791
|
script:
|
|
1792
1792
|
- semanticRelease
|
|
1793
|
-
|
|
1793
|
+
after_script:
|
|
1794
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1794
1795
|
rules:
|
|
1795
1796
|
- &a2
|
|
1796
1797
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1810,7 +1811,8 @@ create release:
|
|
|
1810
1811
|
image: path/to/docker/semantic-release:the-version
|
|
1811
1812
|
script:
|
|
1812
1813
|
- semanticRelease
|
|
1813
|
-
|
|
1814
|
+
after_script:
|
|
1815
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1814
1816
|
rules:
|
|
1815
1817
|
- *a2
|
|
1816
1818
|
- *a3
|
|
@@ -1569,7 +1569,8 @@ create release:
|
|
|
1569
1569
|
image: path/to/docker/semantic-release:the-version
|
|
1570
1570
|
script:
|
|
1571
1571
|
- semanticRelease
|
|
1572
|
-
|
|
1572
|
+
after_script:
|
|
1573
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1573
1574
|
rules:
|
|
1574
1575
|
- &a2
|
|
1575
1576
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1589,7 +1590,8 @@ create release:
|
|
|
1589
1590
|
image: path/to/docker/semantic-release:the-version
|
|
1590
1591
|
script:
|
|
1591
1592
|
- semanticRelease
|
|
1592
|
-
|
|
1593
|
+
after_script:
|
|
1594
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1593
1595
|
rules:
|
|
1594
1596
|
- *a2
|
|
1595
1597
|
- *a3
|
|
@@ -1891,7 +1891,8 @@ create release:
|
|
|
1891
1891
|
image: path/to/docker/semantic-release:the-version
|
|
1892
1892
|
script:
|
|
1893
1893
|
- semanticRelease
|
|
1894
|
-
|
|
1894
|
+
after_script:
|
|
1895
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1895
1896
|
rules:
|
|
1896
1897
|
- &a2
|
|
1897
1898
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1911,7 +1912,8 @@ create release:
|
|
|
1911
1912
|
image: path/to/docker/semantic-release:the-version
|
|
1912
1913
|
script:
|
|
1913
1914
|
- semanticRelease
|
|
1914
|
-
|
|
1915
|
+
after_script:
|
|
1916
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1915
1917
|
rules:
|
|
1916
1918
|
- *a2
|
|
1917
1919
|
- *a3
|
|
@@ -1911,7 +1911,8 @@ create release:
|
|
|
1911
1911
|
image: path/to/docker/semantic-release:the-version
|
|
1912
1912
|
script:
|
|
1913
1913
|
- semanticRelease
|
|
1914
|
-
|
|
1914
|
+
after_script:
|
|
1915
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1915
1916
|
rules:
|
|
1916
1917
|
- &a2
|
|
1917
1918
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1931,7 +1932,8 @@ create release:
|
|
|
1931
1932
|
image: path/to/docker/semantic-release:the-version
|
|
1932
1933
|
script:
|
|
1933
1934
|
- semanticRelease
|
|
1934
|
-
|
|
1935
|
+
after_script:
|
|
1936
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1935
1937
|
rules:
|
|
1936
1938
|
- *a2
|
|
1937
1939
|
- *a3
|
|
@@ -3621,7 +3621,8 @@ create release:
|
|
|
3621
3621
|
image: path/to/docker/semantic-release:the-version
|
|
3622
3622
|
script:
|
|
3623
3623
|
- semanticRelease
|
|
3624
|
-
|
|
3624
|
+
after_script:
|
|
3625
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
3625
3626
|
rules:
|
|
3626
3627
|
- &a2
|
|
3627
3628
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -3641,7 +3642,8 @@ create release:
|
|
|
3641
3642
|
image: path/to/docker/semantic-release:the-version
|
|
3642
3643
|
script:
|
|
3643
3644
|
- semanticRelease
|
|
3644
|
-
|
|
3645
|
+
after_script:
|
|
3646
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
3645
3647
|
rules:
|
|
3646
3648
|
- *a2
|
|
3647
3649
|
- *a3
|
|
@@ -468,6 +468,11 @@ before_script:
|
|
|
468
468
|
persistence:
|
|
469
469
|
storageClass: |-
|
|
470
470
|
premium-rwo
|
|
471
|
+
image:
|
|
472
|
+
registry: |-
|
|
473
|
+
bitnamilegacy
|
|
474
|
+
repository: |-
|
|
475
|
+
mongodb
|
|
471
476
|
backup:
|
|
472
477
|
enabled: false
|
|
473
478
|
hostToBackup: |-
|
|
@@ -1009,6 +1014,11 @@ before_script:
|
|
|
1009
1014
|
persistence:
|
|
1010
1015
|
storageClass: |-
|
|
1011
1016
|
premium-rwo
|
|
1017
|
+
image:
|
|
1018
|
+
registry: |-
|
|
1019
|
+
bitnamilegacy
|
|
1020
|
+
repository: |-
|
|
1021
|
+
mongodb
|
|
1012
1022
|
backup:
|
|
1013
1023
|
enabled: false
|
|
1014
1024
|
hostToBackup: |-
|
|
@@ -1434,6 +1444,11 @@ before_script:
|
|
|
1434
1444
|
persistence:
|
|
1435
1445
|
storageClass: |-
|
|
1436
1446
|
premium-rwo
|
|
1447
|
+
image:
|
|
1448
|
+
registry: |-
|
|
1449
|
+
bitnamilegacy
|
|
1450
|
+
repository: |-
|
|
1451
|
+
mongodb
|
|
1437
1452
|
backup:
|
|
1438
1453
|
enabled: true
|
|
1439
1454
|
hostToBackup: |-
|
|
@@ -1852,6 +1867,11 @@ before_script:
|
|
|
1852
1867
|
persistence:
|
|
1853
1868
|
storageClass: |-
|
|
1854
1869
|
premium-rwo
|
|
1870
|
+
image:
|
|
1871
|
+
registry: |-
|
|
1872
|
+
bitnamilegacy
|
|
1873
|
+
repository: |-
|
|
1874
|
+
mongodb
|
|
1855
1875
|
backup:
|
|
1856
1876
|
enabled: true
|
|
1857
1877
|
hostToBackup: |-
|
|
@@ -2015,7 +2035,8 @@ create release:
|
|
|
2015
2035
|
image: path/to/docker/semantic-release:the-version
|
|
2016
2036
|
script:
|
|
2017
2037
|
- semanticRelease
|
|
2018
|
-
|
|
2038
|
+
after_script:
|
|
2039
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
2019
2040
|
rules:
|
|
2020
2041
|
- &a2
|
|
2021
2042
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -2035,7 +2056,8 @@ create release:
|
|
|
2035
2056
|
image: path/to/docker/semantic-release:the-version
|
|
2036
2057
|
script:
|
|
2037
2058
|
- semanticRelease
|
|
2038
|
-
|
|
2059
|
+
after_script:
|
|
2060
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
2039
2061
|
rules:
|
|
2040
2062
|
- *a2
|
|
2041
2063
|
- *a3
|
|
@@ -1496,7 +1496,8 @@ create release:
|
|
|
1496
1496
|
image: path/to/docker/semantic-release:the-version
|
|
1497
1497
|
script:
|
|
1498
1498
|
- semanticRelease
|
|
1499
|
-
|
|
1499
|
+
after_script:
|
|
1500
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1500
1501
|
rules:
|
|
1501
1502
|
- &a2
|
|
1502
1503
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1516,7 +1517,8 @@ create release:
|
|
|
1516
1517
|
image: path/to/docker/semantic-release:the-version
|
|
1517
1518
|
script:
|
|
1518
1519
|
- semanticRelease
|
|
1519
|
-
|
|
1520
|
+
after_script:
|
|
1521
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1520
1522
|
rules:
|
|
1521
1523
|
- *a2
|
|
1522
1524
|
- *a3
|
|
@@ -458,6 +458,11 @@ before_script:
|
|
|
458
458
|
persistence:
|
|
459
459
|
storageClass: |-
|
|
460
460
|
standard-rwo
|
|
461
|
+
image:
|
|
462
|
+
registry: |-
|
|
463
|
+
bitnamilegacy
|
|
464
|
+
repository: |-
|
|
465
|
+
mongodb
|
|
461
466
|
backup:
|
|
462
467
|
enabled: false
|
|
463
468
|
hostToBackup: |-
|
|
@@ -978,6 +983,11 @@ before_script:
|
|
|
978
983
|
persistence:
|
|
979
984
|
storageClass: |-
|
|
980
985
|
standard-rwo
|
|
986
|
+
image:
|
|
987
|
+
registry: |-
|
|
988
|
+
bitnamilegacy
|
|
989
|
+
repository: |-
|
|
990
|
+
mongodb
|
|
981
991
|
backup:
|
|
982
992
|
enabled: false
|
|
983
993
|
hostToBackup: |-
|
|
@@ -1382,6 +1392,11 @@ before_script:
|
|
|
1382
1392
|
persistence:
|
|
1383
1393
|
storageClass: |-
|
|
1384
1394
|
standard-rwo
|
|
1395
|
+
image:
|
|
1396
|
+
registry: |-
|
|
1397
|
+
bitnamilegacy
|
|
1398
|
+
repository: |-
|
|
1399
|
+
mongodb
|
|
1385
1400
|
backup:
|
|
1386
1401
|
enabled: true
|
|
1387
1402
|
hostToBackup: |-
|
|
@@ -1790,6 +1805,11 @@ before_script:
|
|
|
1790
1805
|
premium-rwo
|
|
1791
1806
|
size: |-
|
|
1792
1807
|
50Gi
|
|
1808
|
+
image:
|
|
1809
|
+
registry: |-
|
|
1810
|
+
bitnamilegacy
|
|
1811
|
+
repository: |-
|
|
1812
|
+
mongodb
|
|
1793
1813
|
backup:
|
|
1794
1814
|
enabled: true
|
|
1795
1815
|
hostToBackup: |-
|
|
@@ -1952,7 +1972,8 @@ create release:
|
|
|
1952
1972
|
image: path/to/docker/semantic-release:the-version
|
|
1953
1973
|
script:
|
|
1954
1974
|
- semanticRelease
|
|
1955
|
-
|
|
1975
|
+
after_script:
|
|
1976
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1956
1977
|
rules:
|
|
1957
1978
|
- &a2
|
|
1958
1979
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1972,7 +1993,8 @@ create release:
|
|
|
1972
1993
|
image: path/to/docker/semantic-release:the-version
|
|
1973
1994
|
script:
|
|
1974
1995
|
- semanticRelease
|
|
1975
|
-
|
|
1996
|
+
after_script:
|
|
1997
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1976
1998
|
rules:
|
|
1977
1999
|
- *a2
|
|
1978
2000
|
- *a3
|
|
@@ -714,7 +714,8 @@ create release:
|
|
|
714
714
|
image: path/to/docker/semantic-release:the-version
|
|
715
715
|
script:
|
|
716
716
|
- semanticRelease
|
|
717
|
-
|
|
717
|
+
after_script:
|
|
718
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
718
719
|
rules:
|
|
719
720
|
- &a2
|
|
720
721
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -734,7 +735,8 @@ create release:
|
|
|
734
735
|
image: path/to/docker/semantic-release:the-version
|
|
735
736
|
script:
|
|
736
737
|
- semanticRelease
|
|
737
|
-
|
|
738
|
+
after_script:
|
|
739
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
738
740
|
rules:
|
|
739
741
|
- *a2
|
|
740
742
|
- *a3
|
|
@@ -714,7 +714,8 @@ create release:
|
|
|
714
714
|
image: path/to/docker/semantic-release:the-version
|
|
715
715
|
script:
|
|
716
716
|
- semanticRelease
|
|
717
|
-
|
|
717
|
+
after_script:
|
|
718
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
718
719
|
rules:
|
|
719
720
|
- &a2
|
|
720
721
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -734,7 +735,8 @@ create release:
|
|
|
734
735
|
image: path/to/docker/semantic-release:the-version
|
|
735
736
|
script:
|
|
736
737
|
- semanticRelease
|
|
737
|
-
|
|
738
|
+
after_script:
|
|
739
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
738
740
|
rules:
|
|
739
741
|
- *a2
|
|
740
742
|
- *a3
|
|
@@ -6115,7 +6115,8 @@ create release:
|
|
|
6115
6115
|
image: path/to/docker/semantic-release:the-version
|
|
6116
6116
|
script:
|
|
6117
6117
|
- semanticRelease
|
|
6118
|
-
|
|
6118
|
+
after_script:
|
|
6119
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
6119
6120
|
rules:
|
|
6120
6121
|
- &a2
|
|
6121
6122
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -6135,7 +6136,8 @@ create release:
|
|
|
6135
6136
|
image: path/to/docker/semantic-release:the-version
|
|
6136
6137
|
script:
|
|
6137
6138
|
- semanticRelease
|
|
6138
|
-
|
|
6139
|
+
after_script:
|
|
6140
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
6139
6141
|
rules:
|
|
6140
6142
|
- *a2
|
|
6141
6143
|
- *a3
|
|
@@ -2534,7 +2534,8 @@ create release:
|
|
|
2534
2534
|
image: path/to/docker/semantic-release:the-version
|
|
2535
2535
|
script:
|
|
2536
2536
|
- semanticRelease
|
|
2537
|
-
|
|
2537
|
+
after_script:
|
|
2538
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
2538
2539
|
rules:
|
|
2539
2540
|
- &a2
|
|
2540
2541
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -2554,7 +2555,8 @@ create release:
|
|
|
2554
2555
|
image: path/to/docker/semantic-release:the-version
|
|
2555
2556
|
script:
|
|
2556
2557
|
- semanticRelease
|
|
2557
|
-
|
|
2558
|
+
after_script:
|
|
2559
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
2558
2560
|
rules:
|
|
2559
2561
|
- *a2
|
|
2560
2562
|
- *a3
|
|
@@ -1568,7 +1568,8 @@ create release:
|
|
|
1568
1568
|
image: path/to/docker/semantic-release:the-version
|
|
1569
1569
|
script:
|
|
1570
1570
|
- semanticRelease
|
|
1571
|
-
|
|
1571
|
+
after_script:
|
|
1572
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1572
1573
|
rules:
|
|
1573
1574
|
- &a2
|
|
1574
1575
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1588,7 +1589,8 @@ create release:
|
|
|
1588
1589
|
image: path/to/docker/semantic-release:the-version
|
|
1589
1590
|
script:
|
|
1590
1591
|
- semanticRelease
|
|
1591
|
-
|
|
1592
|
+
after_script:
|
|
1593
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1592
1594
|
rules:
|
|
1593
1595
|
- *a2
|
|
1594
1596
|
- *a3
|
|
@@ -1576,7 +1576,8 @@ create release:
|
|
|
1576
1576
|
image: path/to/docker/semantic-release:the-version
|
|
1577
1577
|
script:
|
|
1578
1578
|
- semanticRelease
|
|
1579
|
-
|
|
1579
|
+
after_script:
|
|
1580
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1580
1581
|
rules:
|
|
1581
1582
|
- &a2
|
|
1582
1583
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1596,7 +1597,8 @@ create release:
|
|
|
1596
1597
|
image: path/to/docker/semantic-release:the-version
|
|
1597
1598
|
script:
|
|
1598
1599
|
- semanticRelease
|
|
1599
|
-
|
|
1600
|
+
after_script:
|
|
1601
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1600
1602
|
rules:
|
|
1601
1603
|
- *a2
|
|
1602
1604
|
- *a3
|
|
@@ -1593,7 +1593,8 @@ create release:
|
|
|
1593
1593
|
image: path/to/docker/semantic-release:the-version
|
|
1594
1594
|
script:
|
|
1595
1595
|
- semanticRelease
|
|
1596
|
-
|
|
1596
|
+
after_script:
|
|
1597
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1597
1598
|
rules:
|
|
1598
1599
|
- &a2
|
|
1599
1600
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1613,7 +1614,8 @@ create release:
|
|
|
1613
1614
|
image: path/to/docker/semantic-release:the-version
|
|
1614
1615
|
script:
|
|
1615
1616
|
- semanticRelease
|
|
1616
|
-
|
|
1617
|
+
after_script:
|
|
1618
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1617
1619
|
rules:
|
|
1618
1620
|
- *a2
|
|
1619
1621
|
- *a3
|
|
@@ -1574,7 +1574,8 @@ create release:
|
|
|
1574
1574
|
image: path/to/docker/semantic-release:the-version
|
|
1575
1575
|
script:
|
|
1576
1576
|
- semanticRelease
|
|
1577
|
-
|
|
1577
|
+
after_script:
|
|
1578
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1578
1579
|
rules:
|
|
1579
1580
|
- &a4
|
|
1580
1581
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1594,7 +1595,8 @@ create release:
|
|
|
1594
1595
|
image: path/to/docker/semantic-release:the-version
|
|
1595
1596
|
script:
|
|
1596
1597
|
- semanticRelease
|
|
1597
|
-
|
|
1598
|
+
after_script:
|
|
1599
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1598
1600
|
rules:
|
|
1599
1601
|
- *a4
|
|
1600
1602
|
- *a5
|
|
@@ -1554,7 +1554,8 @@ create release:
|
|
|
1554
1554
|
image: path/to/docker/semantic-release:the-version
|
|
1555
1555
|
script:
|
|
1556
1556
|
- semanticRelease
|
|
1557
|
-
|
|
1557
|
+
after_script:
|
|
1558
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1558
1559
|
rules:
|
|
1559
1560
|
- &a4
|
|
1560
1561
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1574,7 +1575,8 @@ create release:
|
|
|
1574
1575
|
image: path/to/docker/semantic-release:the-version
|
|
1575
1576
|
script:
|
|
1576
1577
|
- semanticRelease
|
|
1577
|
-
|
|
1578
|
+
after_script:
|
|
1579
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1578
1580
|
rules:
|
|
1579
1581
|
- *a4
|
|
1580
1582
|
- *a5
|
|
@@ -5175,7 +5175,8 @@ create release:
|
|
|
5175
5175
|
image: path/to/docker/semantic-release:the-version
|
|
5176
5176
|
script:
|
|
5177
5177
|
- semanticRelease
|
|
5178
|
-
|
|
5178
|
+
after_script:
|
|
5179
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
5179
5180
|
rules:
|
|
5180
5181
|
- &a2
|
|
5181
5182
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -5195,7 +5196,8 @@ create release:
|
|
|
5195
5196
|
image: path/to/docker/semantic-release:the-version
|
|
5196
5197
|
script:
|
|
5197
5198
|
- semanticRelease
|
|
5198
|
-
|
|
5199
|
+
after_script:
|
|
5200
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
5199
5201
|
rules:
|
|
5200
5202
|
- *a2
|
|
5201
5203
|
- *a3
|
|
@@ -1708,7 +1708,8 @@ create release:
|
|
|
1708
1708
|
image: path/to/docker/semantic-release:the-version
|
|
1709
1709
|
script:
|
|
1710
1710
|
- semanticRelease
|
|
1711
|
-
|
|
1711
|
+
after_script:
|
|
1712
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1712
1713
|
rules:
|
|
1713
1714
|
- &a2
|
|
1714
1715
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -1728,7 +1729,8 @@ create release:
|
|
|
1728
1729
|
image: path/to/docker/semantic-release:the-version
|
|
1729
1730
|
script:
|
|
1730
1731
|
- semanticRelease
|
|
1731
|
-
|
|
1732
|
+
after_script:
|
|
1733
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
1732
1734
|
rules:
|
|
1733
1735
|
- *a2
|
|
1734
1736
|
- *a3
|
|
@@ -2528,7 +2528,8 @@ create release:
|
|
|
2528
2528
|
image: path/to/docker/semantic-release:the-version
|
|
2529
2529
|
script:
|
|
2530
2530
|
- semanticRelease
|
|
2531
|
-
|
|
2531
|
+
after_script:
|
|
2532
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
2532
2533
|
rules:
|
|
2533
2534
|
- &a2
|
|
2534
2535
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -2548,7 +2549,8 @@ create release:
|
|
|
2548
2549
|
image: path/to/docker/semantic-release:the-version
|
|
2549
2550
|
script:
|
|
2550
2551
|
- semanticRelease
|
|
2551
|
-
|
|
2552
|
+
after_script:
|
|
2553
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
2552
2554
|
rules:
|
|
2553
2555
|
- *a2
|
|
2554
2556
|
- *a3
|
|
@@ -2512,7 +2512,8 @@ create release:
|
|
|
2512
2512
|
image: path/to/docker/semantic-release:the-version
|
|
2513
2513
|
script:
|
|
2514
2514
|
- semanticRelease
|
|
2515
|
-
|
|
2515
|
+
after_script:
|
|
2516
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
2516
2517
|
rules:
|
|
2517
2518
|
- &a2
|
|
2518
2519
|
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
@@ -2532,7 +2533,8 @@ create release:
|
|
|
2532
2533
|
image: path/to/docker/semantic-release:the-version
|
|
2533
2534
|
script:
|
|
2534
2535
|
- semanticRelease
|
|
2535
|
-
|
|
2536
|
+
after_script:
|
|
2537
|
+
- echo '👉 If this job failed with access denied, the project access token might be invald - run \`project-renew-token\` in catladder CLI to fix.'
|
|
2536
2538
|
rules:
|
|
2537
2539
|
- *a2
|
|
2538
2540
|
- *a3
|
package/package.json
CHANGED
|
@@ -102,6 +102,10 @@ export const createMongodbBaseConfig = (context: ComponentContext) => {
|
|
|
102
102
|
persistence: {
|
|
103
103
|
storageClass: "standard-rwo",
|
|
104
104
|
},
|
|
105
|
+
image: {
|
|
106
|
+
registry: "bitnamilegacy",
|
|
107
|
+
repository: "mongodb",
|
|
108
|
+
},
|
|
105
109
|
backup: createMongoBackupDefaultConfig(context),
|
|
106
110
|
},
|
|
107
111
|
env: {
|
|
@@ -10,7 +10,7 @@ import type { Config } from "../../types/config";
|
|
|
10
10
|
import type { GitlabRule } from "../../types";
|
|
11
11
|
|
|
12
12
|
const EXPIRED_TOKEN_HELP =
|
|
13
|
-
"echo '👉
|
|
13
|
+
"echo '👉 If this job failed with access denied, the project access token might be invald - run `project-renew-token` in catladder CLI to fix.'";
|
|
14
14
|
|
|
15
15
|
const baseReleaseRules = [
|
|
16
16
|
RULE_NEVER_ON_RELEASE_COMMIT,
|
|
@@ -22,7 +22,8 @@ export const getGitlabReleaseJobs = (config: Config) => {
|
|
|
22
22
|
["create release"]: {
|
|
23
23
|
stage: "release",
|
|
24
24
|
image: getRunnerImage("semantic-release"),
|
|
25
|
-
script: ["semanticRelease"
|
|
25
|
+
script: ["semanticRelease"],
|
|
26
|
+
after_script: [EXPIRED_TOKEN_HELP],
|
|
26
27
|
rules: [
|
|
27
28
|
...baseReleaseRules,
|
|
28
29
|
{
|
|
@@ -38,7 +39,8 @@ export const getGitlabReleaseJobs = (config: Config) => {
|
|
|
38
39
|
["⚠️ force create release"]: {
|
|
39
40
|
stage: "release",
|
|
40
41
|
image: getRunnerImage("semantic-release"),
|
|
41
|
-
script: ["semanticRelease"
|
|
42
|
+
script: ["semanticRelease"],
|
|
43
|
+
after_script: [EXPIRED_TOKEN_HELP],
|
|
42
44
|
needs: [],
|
|
43
45
|
rules: [
|
|
44
46
|
...baseReleaseRules,
|