Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.97 KB | None | 0 0
  1. groups:
  2.   group overview has changed:
  3.   jobs:
  4.   - build
  5.   - full-deploy-front
  6.   - app-deploy-front
  7.   - terraform-plan
  8.   - terraform-apply
  9.   - - functional-tests
  10.   name: overview
  11.  
  12.   group new-group has been added:
  13.   + jobs:
  14.   + - new-job
  15.   + name: new-group
  16.  
  17. resources:
  18.   resource git_config-terraform has changed:
  19.   name: git_config-terraform
  20.   source:
  21.     branch: master
  22.     paths:
  23.     - test/terraform/test/*
  24.     private_key: ((git_config.ssh_key))
  25.   -   uri: git@github.com:MyUser/config-magento.git
  26.   +   uri: git@github.com:MyUser/config-magento2.git
  27.   type: git
  28.  
  29.   resource 10-min-trigger has been added:
  30.   + name: 10-min-trigger
  31.   + source:
  32.   +   expression: '*/10 * * * *'
  33.   +   fire_immediately: true
  34.   +   location: America/New_York
  35.   + type: cron-resource
  36.  
  37. resource types:
  38.   resource type cron-resource has been added:
  39.   + name: cron-resource
  40.   + source:
  41.   +   repository: cftoolsmiths/cron-resource
  42.   + type: docker-image
  43.  
  44. jobs:
  45.   job terraform-apply has changed:
  46.   build_logs_to_retain: 10
  47.   name: terraform-apply
  48.   plan:
  49.   - do:
  50.     - get: git_stack-terraform
  51.       passed:
  52.       - terraform-plan
  53.     - get: git_config-terraform
  54.       passed:
  55.       - terraform-plan
  56.     - get: tfstate
  57.       passed:
  58.       - terraform-plan
  59.     - config:
  60.         container_limits: {}
  61.         image_resource:
  62.           source:
  63.             repository: cycloid/cycloid-toolkit
  64.             tag: latest
  65.           type: docker-image
  66.         inputs:
  67.         - name: git_config-terraform
  68.           path: config
  69.         - name: git_stack-terraform
  70.           path: stack
  71.         outputs:
  72.         - name: merged-stack
  73.           path: merged-stack
  74.         platform: linux
  75.         run:
  76.   -         path: /usr/bin/merge-stack-and-config
  77.   +         path: /usr/bin/merge-stack-and-config_Change
  78.       params:
  79.         CONFIG_PATH: test/terraform/test
  80.         STACK_PATH: terraform
  81.       task: merge-stack-and-config
  82.     - params:
  83.         plan_run: true
  84.         terraform_source: merged-stack/
  85.       put: tfstate
  86.  
  87.   job terraform-destroy has changed:
  88.   build_logs_to_retain: 10
  89.   max_in_flight: 1
  90.   name: terraform-destroy
  91.   plan:
  92.   - do:
  93.     - get: git_stack-terraform
  94.     - get: git_config-terraform
  95.     - config:
  96.         container_limits: {}
  97.         image_resource:
  98.           source:
  99.             repository: cycloid/cycloid-toolkit
  100.             tag: latest
  101.           type: docker-image
  102.         inputs:
  103.         - name: git_config-terraform
  104.           path: config
  105.         - name: git_stack-terraform
  106.           path: stack
  107.         outputs:
  108.         - name: merged-stack
  109.           path: merged-stack
  110.         platform: linux
  111.         run:
  112.           path: /usr/bin/merge-stack-and-config
  113.       params:
  114.   +       ADDED_VAR: foo
  115.         CONFIG_PATH: test/terraform/test
  116.         STACK_PATH: terraform
  117.       task: merge-stack-and-config
  118.     - get_params:
  119.         action: destroy
  120.       params:
  121.         action: destroy
  122.         terraform_source: merged-stack/
  123.       put: tfstate
  124.  
  125.   job functional-tests has been removed:
  126.   - build_logs_to_retain: 10
  127.   - max_in_flight: 1
  128.   - name: functional-tests
  129.   - plan:
  130.   - - do:
  131.   -   - get: s3_magento-release
  132.   -     passed:
  133.   -     - app-deploy-front
  134.   -     trigger: true
  135.   -   - get: git_magento-code
  136.   -     passed:
  137.   -     - app-deploy-front
  138.   -   - config:
  139.   -       container_limits: {}
  140.   -       image_resource:
  141.   -         source:
  142.   -           repository: cycloid/busybox
  143.   -           tag: latest
  144.   -         type: docker-image
  145.   -       platform: linux
  146.   -       run:
  147.   -         args:
  148.   -         - -xec
  149.   -         - |
  150.   -           DIR=${PWD}
  151.   -           echo "Dummy functional tests OK"
  152.   -         path: /bin/bash
  153.   -     task: run
  154.  
  155.   job new-job has been added:
  156.   + build_logs_to_retain: 10
  157.   + max_in_flight: 1
  158.   + name: new-job
  159.   + plan:
  160.   + - get: 10-min-trigger
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement