@catladder/pipeline 1.168.4 → 1.170.0
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/bash/replaceAsync.js +4 -3
- package/dist/build/docker.js +1 -1
- package/dist/bundles/catladder-gitlab/index.js +1 -1
- package/dist/constants.js +1 -1
- package/dist/deploy/cloudRun/createJobs/cloudRunServices.js +2 -0
- package/dist/deploy/types/googleCloudRun.d.ts +7 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/cloud-run-http2.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-meteor-with-worker.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +1346 -0
- package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +8 -4
- package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +4 -0
- package/examples/__snapshots__/custom-build-job-with-tests.test.ts.snap +4 -0
- package/examples/__snapshots__/custom-build-job.test.ts.snap +4 -0
- package/examples/__snapshots__/custom-deploy.test.ts.snap +4 -0
- package/examples/__snapshots__/custom-sbom-java.test.ts.snap +4 -0
- package/examples/__snapshots__/git-submodule.test.ts.snap +4 -0
- package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +4 -0
- package/examples/__snapshots__/kubernetes-with-cloud-sql-legacy.test.ts.snap +4 -0
- package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +4 -0
- package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +8 -0
- package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +4 -0
- package/examples/__snapshots__/local-dot-env.test.ts.snap +4 -0
- package/examples/__snapshots__/meteor-kubernetes.test.ts.snap +4 -0
- package/examples/__snapshots__/multiline-var.test.ts.snap +2942 -1020
- package/examples/__snapshots__/native-app.test.ts.snap +4 -0
- package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +4 -0
- package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +4 -0
- package/examples/__snapshots__/rails-k8s-with-worker-dockerfile.test.ts.snap +4 -0
- package/examples/__snapshots__/rails-k8s-with-worker.test.ts.snap +4 -0
- package/examples/__snapshots__/workspace-api-www-custom-cache.test.ts.snap +8 -0
- package/examples/__snapshots__/workspace-api-www.test.ts.snap +8 -0
- package/examples/cloud-run-service-custom-vpc-connector.test.ts +11 -0
- package/examples/cloud-run-service-custom-vpc-connector.ts +30 -0
- package/examples/cloud-run-service-custom-vpc.ts +2 -1
- package/examples/multiline-var.ts +57 -15
- package/package.json +1 -1
- package/src/bash/replaceAsync.ts +7 -3
- package/src/build/docker.ts +1 -1
- package/src/deploy/cloudRun/createJobs/cloudRunServices.ts +2 -0
- package/src/deploy/types/googleCloudRun.ts +10 -2
|
@@ -229,6 +229,7 @@ api 🧪 test:
|
|
|
229
229
|
- name: docker:24.0.6-dind
|
|
230
230
|
command:
|
|
231
231
|
- --tls=false
|
|
232
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
232
233
|
variables:
|
|
233
234
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
234
235
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -667,6 +668,7 @@ api 🧪 test:
|
|
|
667
668
|
- name: docker:24.0.6-dind
|
|
668
669
|
command:
|
|
669
670
|
- --tls=false
|
|
671
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
670
672
|
variables:
|
|
671
673
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
672
674
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -1096,6 +1098,7 @@ api 🧪 test:
|
|
|
1096
1098
|
- name: docker:24.0.6-dind
|
|
1097
1099
|
command:
|
|
1098
1100
|
- --tls=false
|
|
1101
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
1099
1102
|
variables:
|
|
1100
1103
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
1101
1104
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -1517,6 +1520,7 @@ api 🧪 test:
|
|
|
1517
1520
|
- name: docker:24.0.6-dind
|
|
1518
1521
|
command:
|
|
1519
1522
|
- --tls=false
|
|
1523
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
1520
1524
|
variables:
|
|
1521
1525
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
1522
1526
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -228,6 +228,7 @@ api 🧪 test:
|
|
|
228
228
|
- name: docker:24.0.6-dind
|
|
229
229
|
command:
|
|
230
230
|
- --tls=false
|
|
231
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
231
232
|
variables:
|
|
232
233
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
233
234
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -523,6 +524,7 @@ api 🧪 test:
|
|
|
523
524
|
- name: docker:24.0.6-dind
|
|
524
525
|
command:
|
|
525
526
|
- --tls=false
|
|
527
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
526
528
|
variables:
|
|
527
529
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
528
530
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -816,6 +818,7 @@ api 🧪 test:
|
|
|
816
818
|
- name: docker:24.0.6-dind
|
|
817
819
|
command:
|
|
818
820
|
- --tls=false
|
|
821
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
819
822
|
variables:
|
|
820
823
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
821
824
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -1096,6 +1099,7 @@ api 🧪 test:
|
|
|
1096
1099
|
- name: docker:24.0.6-dind
|
|
1097
1100
|
command:
|
|
1098
1101
|
- --tls=false
|
|
1102
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
1099
1103
|
variables:
|
|
1100
1104
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
1101
1105
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -235,6 +235,7 @@ web 🧪 test:
|
|
|
235
235
|
- name: docker:24.0.6-dind
|
|
236
236
|
command:
|
|
237
237
|
- --tls=false
|
|
238
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
238
239
|
variables:
|
|
239
240
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
240
241
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -652,6 +653,7 @@ web 🧪 test:
|
|
|
652
653
|
- name: docker:24.0.6-dind
|
|
653
654
|
command:
|
|
654
655
|
- --tls=false
|
|
656
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
655
657
|
variables:
|
|
656
658
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
657
659
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -1060,6 +1062,7 @@ web 🧪 test:
|
|
|
1060
1062
|
- name: docker:24.0.6-dind
|
|
1061
1063
|
command:
|
|
1062
1064
|
- --tls=false
|
|
1065
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
1063
1066
|
variables:
|
|
1064
1067
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
1065
1068
|
DOCKER_TLS_CERTDIR: ''
|
|
@@ -1461,6 +1464,7 @@ web 🧪 test:
|
|
|
1461
1464
|
- name: docker:24.0.6-dind
|
|
1462
1465
|
command:
|
|
1463
1466
|
- --tls=false
|
|
1467
|
+
- --registry-mirror=https://mirror.gcr.io
|
|
1464
1468
|
variables:
|
|
1465
1469
|
DOCKER_HOST: tcp://0.0.0.0:2375
|
|
1466
1470
|
DOCKER_TLS_CERTDIR: ''
|