@catladder/pipeline 1.159.1 → 1.161.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.
Files changed (109) hide show
  1. package/dist/bundles/catladder-gitlab/index.js +2 -2
  2. package/dist/constants.js +1 -1
  3. package/dist/tsconfig.tsbuildinfo +1 -1
  4. package/examples/.test-gen-ignore +1 -0
  5. package/examples/__snapshots__/{cloud-run-memory-limit.ts.snap → cloud-run-memory-limit.test.ts.snap} +1 -1
  6. package/examples/__snapshots__/{cloud-run-meteor-with-worker.ts.snap → cloud-run-meteor-with-worker.test.ts.snap} +1 -1
  7. package/examples/__snapshots__/{cloud-run-no-cpu-throttling.ts.snap → cloud-run-no-cpu-throttling.test.ts.snap} +1 -1
  8. package/examples/__snapshots__/{cloud-run-no-service.ts.snap → cloud-run-no-service.test.ts.snap} +1 -1
  9. package/examples/__snapshots__/{cloud-run-non-public.ts.snap → cloud-run-non-public.test.ts.snap} +1 -1
  10. package/examples/__snapshots__/{cloud-run-post-stop-job.ts.snap → cloud-run-post-stop-job.test.ts.snap} +1 -1
  11. package/examples/__snapshots__/{cloud-run-service-gen2.ts.snap → cloud-run-service-gen2.test.ts.snap} +1 -1
  12. package/examples/__snapshots__/{cloud-run-service-increase-timout.ts.snap → cloud-run-service-increase-timout.test.ts.snap} +1 -1
  13. package/examples/__snapshots__/{cloud-run-service-with-volumes.ts.snap → cloud-run-service-with-volumes.test.ts.snap} +1 -1
  14. package/examples/__snapshots__/{cloud-run-storybook.ts.snap → cloud-run-storybook.test.ts.snap} +1 -1
  15. package/examples/__snapshots__/{cloud-run-with-ngnix.ts.snap → cloud-run-with-ngnix.test.ts.snap} +1 -1
  16. package/examples/__snapshots__/{cloud-run-with-sql-reuse-db.ts.snap → cloud-run-with-sql-reuse-db.test.ts.snap} +1 -1
  17. package/examples/__snapshots__/{cloud-run-with-sql.ts.snap → cloud-run-with-sql.test.ts.snap} +1 -1
  18. package/examples/__snapshots__/{cloud-run-with-worker.ts.snap → cloud-run-with-worker.test.ts.snap} +1 -1
  19. package/examples/__snapshots__/{custom-build-job-with-tests.ts.snap → custom-build-job-with-tests.test.ts.snap} +1 -1
  20. package/examples/__snapshots__/{custom-build-job.ts.snap → custom-build-job.test.ts.snap} +1 -1
  21. package/examples/__snapshots__/{custom-deploy.ts.snap → custom-deploy.test.ts.snap} +1 -1
  22. package/examples/__snapshots__/{custom-envs.ts.snap → custom-envs.test.ts.snap} +1 -1
  23. package/examples/__snapshots__/{custom-sbom-java.ts.snap → custom-sbom-java.test.ts.snap} +1 -1
  24. package/examples/__snapshots__/{git-submodule.ts.snap → git-submodule.test.ts.snap} +1 -1
  25. package/examples/__snapshots__/{kubernetes-application-customization.ts.snap → kubernetes-application-customization.test.ts.snap} +1 -1
  26. package/examples/__snapshots__/{kubernetes-with-cloud-sql-legacy.ts.snap → kubernetes-with-cloud-sql-legacy.test.ts.snap} +1 -1
  27. package/examples/__snapshots__/{kubernetes-with-cloud-sql.ts.snap → kubernetes-with-cloud-sql.test.ts.snap} +1 -1
  28. package/examples/__snapshots__/{kubernetes-with-jobs.ts.snap → kubernetes-with-jobs.test.ts.snap} +1 -1
  29. package/examples/__snapshots__/{kubernetes-with-mongodb.ts.snap → kubernetes-with-mongodb.test.ts.snap} +1 -1
  30. package/examples/__snapshots__/{local-dot-env.ts.snap → local-dot-env.test.ts.snap} +1 -1
  31. package/examples/__snapshots__/{meteor-kubernetes.ts.snap → meteor-kubernetes.test.ts.snap} +1 -1
  32. package/examples/__snapshots__/{multiline-var.ts.snap → multiline-var.test.ts.snap} +1 -1
  33. package/examples/__snapshots__/{native-app.ts.snap → native-app.test.ts.snap} +1 -1
  34. package/examples/__snapshots__/{node-build-with-custom-image.ts.snap → node-build-with-custom-image.test.ts.snap} +1 -1
  35. package/examples/__snapshots__/{node-build-with-docker-additions.ts.snap → node-build-with-docker-additions.test.ts.snap} +1 -1
  36. package/examples/__snapshots__/rails-k8s-with-worker-dockerfile.test.ts.snap +2011 -0
  37. package/examples/__snapshots__/rails-k8s-with-worker.test.ts.snap +1995 -0
  38. package/examples/__snapshots__/{wait-for-other-deploy.ts.snap → wait-for-other-deploy.test.ts.snap} +1 -1
  39. package/examples/cloud-run-memory-limit.test.ts +10 -0
  40. package/examples/cloud-run-memory-limit.ts +6 -4
  41. package/examples/cloud-run-meteor-with-worker.test.ts +10 -0
  42. package/examples/cloud-run-meteor-with-worker.ts +6 -4
  43. package/examples/cloud-run-no-cpu-throttling.test.ts +10 -0
  44. package/examples/cloud-run-no-cpu-throttling.ts +6 -4
  45. package/examples/cloud-run-no-service.test.ts +10 -0
  46. package/examples/cloud-run-no-service.ts +5 -4
  47. package/examples/cloud-run-non-public.test.ts +10 -0
  48. package/examples/cloud-run-non-public.ts +5 -4
  49. package/examples/cloud-run-post-stop-job.test.ts +10 -0
  50. package/examples/cloud-run-post-stop-job.ts +6 -4
  51. package/examples/cloud-run-service-gen2.test.ts +10 -0
  52. package/examples/cloud-run-service-gen2.ts +6 -4
  53. package/examples/cloud-run-service-increase-timout.test.ts +10 -0
  54. package/examples/cloud-run-service-increase-timout.ts +6 -4
  55. package/examples/cloud-run-service-with-volumes.test.ts +10 -0
  56. package/examples/cloud-run-service-with-volumes.ts +6 -4
  57. package/examples/cloud-run-storybook.test.ts +10 -0
  58. package/examples/cloud-run-storybook.ts +5 -4
  59. package/examples/cloud-run-with-ngnix.test.ts +10 -0
  60. package/examples/cloud-run-with-ngnix.ts +5 -4
  61. package/examples/cloud-run-with-sql-reuse-db.test.ts +10 -0
  62. package/examples/cloud-run-with-sql-reuse-db.ts +5 -4
  63. package/examples/cloud-run-with-sql.test.ts +10 -0
  64. package/examples/cloud-run-with-sql.ts +6 -4
  65. package/examples/cloud-run-with-worker.test.ts +10 -0
  66. package/examples/cloud-run-with-worker.ts +6 -4
  67. package/examples/custom-build-job-with-tests.test.ts +10 -0
  68. package/examples/custom-build-job-with-tests.ts +5 -4
  69. package/examples/custom-build-job.test.ts +10 -0
  70. package/examples/custom-build-job.ts +5 -4
  71. package/examples/custom-deploy.test.ts +10 -0
  72. package/examples/custom-deploy.ts +5 -4
  73. package/examples/custom-envs.test.ts +10 -0
  74. package/examples/custom-envs.ts +5 -4
  75. package/examples/custom-sbom-java.test.ts +10 -0
  76. package/examples/custom-sbom-java.ts +5 -4
  77. package/examples/git-submodule.test.ts +10 -0
  78. package/examples/git-submodule.ts +5 -4
  79. package/examples/kubernetes-application-customization.test.ts +10 -0
  80. package/examples/kubernetes-application-customization.ts +6 -4
  81. package/examples/kubernetes-with-cloud-sql-legacy.test.ts +10 -0
  82. package/examples/kubernetes-with-cloud-sql-legacy.ts +6 -4
  83. package/examples/kubernetes-with-cloud-sql.test.ts +10 -0
  84. package/examples/kubernetes-with-cloud-sql.ts +6 -4
  85. package/examples/kubernetes-with-jobs.test.ts +10 -0
  86. package/examples/kubernetes-with-jobs.ts +6 -4
  87. package/examples/kubernetes-with-mongodb.test.ts +10 -0
  88. package/examples/kubernetes-with-mongodb.ts +6 -4
  89. package/examples/local-dot-env.test.ts +10 -0
  90. package/examples/local-dot-env.ts +6 -4
  91. package/examples/meteor-kubernetes.test.ts +10 -0
  92. package/examples/meteor-kubernetes.ts +3 -4
  93. package/examples/multiline-var.test.ts +10 -0
  94. package/examples/multiline-var.ts +5 -4
  95. package/examples/native-app.test.ts +10 -0
  96. package/examples/native-app.ts +6 -4
  97. package/examples/node-build-with-custom-image.test.ts +10 -0
  98. package/examples/node-build-with-custom-image.ts +5 -4
  99. package/examples/node-build-with-docker-additions.test.ts +10 -0
  100. package/examples/node-build-with-docker-additions.ts +5 -4
  101. package/examples/rails-k8s-with-worker-dockerfile.test.ts +9 -0
  102. package/examples/rails-k8s-with-worker.test.ts +10 -0
  103. package/examples/rails-k8s-with-worker.ts +4 -10
  104. package/examples/wait-for-other-deploy.test.ts +10 -0
  105. package/examples/wait-for-other-deploy.ts +5 -4
  106. package/package.json +5 -2
  107. package/scripts/generate-examples-test.ts +91 -0
  108. package/scripts/tsconfig.json +7 -0
  109. package/examples/__snapshots__/rails-k8s-with-worker.ts.snap +0 -4005
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for custom-build-job 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for custom-deploy 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for custom-envs 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for custom-sbom-java 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for git-submodule 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for kubernetes-application-customization 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for kubernetes-with-cloud-sql-legacy 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for kubernetes-with-cloud-sql 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for kubernetes-with-jobs 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for kubernetes-with-mongodb 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for local-dot-env 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for meteor-kubernetes 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for multiline-var 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for native-app 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for node-build-with-custom-image 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",
@@ -1,6 +1,6 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`matches snapshot 1`] = `
3
+ exports[`matches snapshot for node-build-with-docker-additions 1`] = `
4
4
  {
5
5
  "mainBranch": {
6
6
  "image": "path/to/docker/jobs-default:the-version",