Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. ---
  2. resource_types:
  3. - name: pivnet
  4. type: docker-image
  5. source:
  6. repository: pivotalcf/pivnet-resource
  7. tag: latest-final
  8.  
  9. resources:
  10.  
  11. - name: pivnet-pcf-opsman
  12. type: pivnet
  13. source:
  14. api_token: {{pivnet_api_token}}
  15. product_slug: ops-manager
  16. product_version: 1\.10\.0
  17.  
  18. - name: govcwrap
  19. type: git
  20. source:
  21. branch: master
  22. uri: {{git_repo_gowrap}}
  23. - name: pcf-vsphere
  24. type: git
  25. source:
  26. branch: master
  27. uri: {{git_repo_pcf_vsphere}}
  28. username: {{git_username}}
  29. password: {{git_password}}
  30.  
  31. jobs:
  32. - name: WIP-deploy-opsman-idempotently
  33. plan:
  34. - aggregate:
  35. - get: pcf-vsphere
  36. trigger: true
  37. - get: govcwrap
  38. trigger: true
  39. - get: pivnet-pcf-opsman
  40. params:
  41. globs:
  42. - "*vsphere*"
  43. - task: check-prereqs
  44. file: pcf-vsphere/tasks/opsman/deploy_opsman_idempotently.yml
  45. timeout: 4h
  46. params:
  47. OPSMAN_VM_IP: {{opsman_vm_ip}}
  48. OPSMAN_NTP_SERVER: {{opsman_ntp_server}}
  49. OPSMAN_VM_PASSWORD: {{opsman_vm_password}}
  50. OPSMAN_NETWORK_NAME: {{opsman_network_name}}
  51. OPSMAN_OVA: ../pivnet-pcf-opsman/pcf-vsphere-1.10.0.ova
  52. OPSMAN_CUSTOM_HOSTNAME: {{opsman_custom_hostname}}
  53. GOVC_URL: {{govc_url}}
  54. GOVC_USERNAME: {{govc_username}}
  55. GOVC_PASSWORD: {{govc_password}}
  56. GOVC_DATACENTER: {{govc_datacenter}}
  57. GOVC_DATASTORE: {{govc_datastore}}
  58. GOVC_RESOURCE_POOL: {{govc_resource_pool}}
  59. GOVC_INSECURE: {{govc_insecure}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement