-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wildcard is not allowed under application manifest for routes section #399
Comments
We have created an issue in Pivotal Tracker to manage this: https://www.pivotaltracker.com/story/show/155060885 The labels on this github issue will be updated when the story is started. |
Looks like the way the CLI is parsing the route in the YAML file is incorrect. For now, a work around is to create and map the routes by hand (via the |
Fixed in the following commit: cloudfoundry/cli@70e297c |
Thanks for quickly fixing the issue, I would like to know which CLI version will contain this fix? Thanks, |
@prashantgnet This fix will be in cf CLI v6.35.0, which is the next release and almost ready to ship. |
I know my queries are not related to mentioned issue but I don't want to raise new issue.
Thanks, |
Verified and working fine using CF CLI 6.35 Thanks, |
@prashantgnet Thanks for confirming. |
Great!, I'll go ahead and close this issue, but feel free to re-open if you need more help. |
We still see the same issue with We've
Applying that manifest then resulted in an error, so we need to do the route mapping out of band for now. ---
applications:
- name: error-page
stack: cflinuxfs3
routes:
- route: "*.apps.XXX.com"
- route: "*.apps.domain2.XXX.com"
- route: "*.apps.domain1.XXX.com"
no-route: true
buildpacks:
- nginx_buildpack
processes:
- type: web
instances: 3
memory: 16M
disk_quota: 100M
health-check-type: port |
@hoegaarden You'd want to redirect this issue to the Cloud Controller team as manifest handling is done by that team. |
As domain and host are going to be deprecated, I am trying to use routes property for application manifest for "*" i.e. wildcard host-name to support multi-tenancy but it gives me following error message
Following is my application manifest file, I have tried multiple options like defining http, www, double quotes but no luck
The text was updated successfully, but these errors were encountered: