I am taking Pivotal's Cloud Foundry training. I set up a 30 day trial account at SAP and trying to push my first "hello, world" application, but getting error
Updating app web-app...
Mapping routes...
You have exceeded the total routes for your organization's quota. FAILED
How do I increase that quota? (This is my first and only push! Not sure why I am exceeding anything!)
I tried
> cf org P2000121914trial_trial
Getting info for org P2000121914trial_trial...
name: P2000121914trial_trial
domains: cfapps.us10.hana.ondemand.com
quota: SUBSCRIPTION_QUOTA
spaces: victor
isolation segments:
I also tried
> cf create-quota small -m 2048M -i 1024M -r 10 -s 10
Creating quota small as [email protected]...
FAILED
Server error, status code: 403, error code: 10003, message: You are not
authorized to perform the requested action
My manifest looks like this:
---
applications:
- name: web-app
memory: 32M
disk_quota: 256M
random-route: true
buildpack: "https://github.com/cloudfoundry/ruby-buildpack#v1.6.47"