File tree Expand file tree Collapse file tree
acceptance-tests/ipv4director/syslogrelease Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,9 +22,11 @@ var _ = BeforeSuite(func() {
2222 bosh = testhelpers .NewBOSH ()
2323 stemcellPath := testhelpers .RequireEnv ("STEMCELL_PATH" )
2424 syslogReleasePath := testhelpers .RequireEnv ("SYSLOG_RELEASE_PATH" )
25+ bpmReleasePath := testhelpers .RequireEnv ("BPM_RELEASE_PATH" )
2526
2627 bosh .UploadStemcell (stemcellPath )
2728 bosh .UploadRelease (syslogReleasePath )
29+ bosh .UploadRelease (bpmReleasePath )
2830 bosh .SafeDeploy ()
2931})
3032
Original file line number Diff line number Diff line change @@ -1125,6 +1125,12 @@ resources:
11251125 type : bosh-io-release
11261126 source :
11271127 repository : cloudfoundry/os-conf-release
1128+
1129+ - name : bpm-release
1130+ type : bosh-io-release
1131+ source :
1132+ repository : cloudfoundry/bpm-release
1133+
11281134- name : bosh-deployment
11291135 type : git
11301136 source :
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ BOSH_CLIENT_SECRET="$(bosh int "${REPO_PARENT}/director-state/director-creds.yml
1616BOSH_ENVIRONMENT=" $( bosh int " ${REPO_PARENT} /director-state/director-creds.yml" --path /internal_ip) "
1717SYSLOG_RELEASE_PATH=" $( realpath " ${REPO_PARENT} /syslog-release" /* .tgz) "
1818OS_CONF_RELEASE_PATH=" $( realpath " ${REPO_PARENT} /os-conf-release" /* .tgz) "
19+ BPM_RELEASE_PATH=" $( realpath " ${REPO_PARENT} /bpm-release" /* .tgz) "
1920STEMCELL_PATH=" $( realpath " ${REPO_PARENT} /stemcell" /* .tgz) "
2021# Quote value since the bosh CLI YAML parses it which results in `0.40` becoming `0.4`
2122# shellcheck disable=SC2089
@@ -28,6 +29,7 @@ export BOSH_CLIENT_SECRET
2829export BOSH_ENVIRONMENT
2930export SYSLOG_RELEASE_PATH
3031export OS_CONF_RELEASE_PATH
32+ export BPM_RELEASE_PATH
3133export STEMCELL_PATH
3234export BOSH_stemcell_version
3335
Original file line number Diff line number Diff line change 77- name : stemcell
88- name : syslog-release
99- name : os-conf-release
10+ - name : bpm-release
1011- name : director-state
1112
1213params :
You can’t perform that action at this time.
0 commit comments