I have a simple static project website on GitHub. I created a pipeline that performs "Easy" assembly and deployment. The following "less informative" error is displayed in the deployment log file:
Preparing to start the job...
Cloning the 'master' branch from repo 'https://github.com/FlatBallFlyer/ssgpp.git'
Repository successfully cloned
Target: https://api.ng.bluemix.net
Using manifest file /home/pipeline/424009fc-100d-4068-9a23-3dde2271cba4/manifest.yml
Using stack cflinuxfs2...
OK
Creating app ssgpp in org Mike.Storey@us.ibm.com / space ssgpp as Mike.Storey@us.ibm.com...
OK
Using route ssgpp.mybluemix.net
Binding ssgpp.mybluemix.net to ssgpp...
OK
Uploading ssgpp...
FAILED
Error processing app files: Error uploading application.
Server error, status code: 500, error code: 0, message:
Finished: FAILED
The .yml manifest from the git project is simple:
applications:
- name: ssgpp
memory: 64M
buildpack: https://github.com/cloudfoundry/staticfile-buildpack.git
host: ssgpp
stack: cflinuxfs2
This is a gigapixel panoramic photo gallery web application that contains many files - about 1.5 gigabytes of images. I'm not sure if I will blow up the upper limit of BlueMix or not.
source
share