Advertisement
Guest User

YAML Output

a guest
Apr 3rd, 2020
563
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.64 KB | None | 0 0
  1. - build_logs_to_retain: 1000
  2.   name: demo-comp2
  3.   plan:
  4.   - get: landscape
  5.     passed:
  6.    - demo-comp1
  7.     trigger: true
  8.   - attempts: 3
  9.     config:
  10.       container_limits: {}
  11.       image_resource:
  12.         source:
  13.           password: ''
  14.           repository: ubuntu
  15.           username: ''
  16.         type: docker-image
  17.       inputs:
  18.       - name: landscape
  19.       params:
  20.         INFLUXDB_DATABASE: newdatabase
  21.         INFLUXDB_PASSWORD: 123456789abcdefgh
  22.         INFLUXDB_URL: influxdb.com
  23.         INFLUXDB_USER: newuser
  24.         MY_NAME: Rohith
  25.       platform: linux
  26.       run:
  27.         path: my_path/my_path/script.sh
  28.     task: task1
  29.     timeout: 120m
  30.   - attempts: 3
  31.     config:
  32.       container_limits: {}
  33.       image_resource:
  34.         source:
  35.           password: ''
  36.           repository: ubuntu
  37.           username: ''
  38.         type: docker-image
  39.       inputs:
  40.       - name: landscape
  41.       params:
  42.         INFLUXDB_DATABASE: newdatabase
  43.         INFLUXDB_PASSWORD: 123456789abcdefgh
  44.         INFLUXDB_URL: influxdb.com
  45.         INFLUXDB_USER: newuser
  46.         MY_NAME: Rohith
  47.       platform: linux
  48.       run:
  49.         path: my_path/my_path/script.sh
  50.     task: test-demo-comp2
  51.     timeout: 20m
  52.   serial: true
  53. - build_logs_to_retain: 1000
  54.   name: demo-comp1
  55.   plan:
  56.   - get: landscape
  57.     trigger: true
  58.   - attempts: 3
  59.     config:
  60.       container_limits: {}
  61.       image_resource:
  62.         source:
  63.           password: ''
  64.           repository: ubuntu
  65.           username: ''
  66.         type: docker-image
  67.       inputs:
  68.       - name: landscape
  69.       params:
  70.         INFLUXDB_DATABASE: newdatabase
  71.         INFLUXDB_PASSWORD: 123456789abcdefgh
  72.         INFLUXDB_URL: influxdb.com
  73.         INFLUXDB_USER: newuser
  74.         MY_NAME: Rohith
  75.       platform: linux
  76.       run:
  77.         path: my_path/my_path/script.sh
  78.     task: deploy-demo-comp1
  79.     timeout: 120m
  80.   - attempts: 3
  81.     config:
  82.       container_limits: {}
  83.       image_resource:
  84.         source:
  85.           password: ''
  86.           repository: ubuntu
  87.           username: ''
  88.         type: docker-image
  89.       inputs:
  90.       - name: landscape
  91.       params:
  92.         INFLUXDB_DATABASE: newdatabase
  93.         INFLUXDB_PASSWORD: 123456789abcdefgh
  94.         INFLUXDB_URL: influxdb.com
  95.         INFLUXDB_USER: newuser
  96.         MY_NAME: Rohith
  97.       platform: linux
  98.       run:
  99.         path: my_path/my_path/script.sh
  100.     task: test-demo-comp1
  101.     timeout: 20m
  102.   serial: true
  103. resources:
  104. - check_every: 5m
  105.   name: landscape
  106.   source:
  107.     branch: master
  108.     password: newpassword
  109.     paths:
  110.    - config/*
  111.     - config/**/*
  112.     uri: my_repo.git
  113.     username: myuser
  114.   type: git
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement