| Summary: | Plugin Cart wont Build on Scalable Application | ||
|---|---|---|---|
| Product: | OpenShift Online | Reporter: | Chester Copperpot <britztopher> |
| Component: | Image | Assignee: | Ben Parees <bparees> |
| Status: | CLOSED NOTABUG | QA Contact: | libra bugs <libra-bugs> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 2.x | CC: | bparees, dmcphers |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2014-01-09 21:12:09 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
Chester Copperpot
2013-12-05 19:52:11 UTC
It appears your testcart is being created in its own gear, which is why you don't see it in your primary gear. "rhc app show php --gears" will reveal this. I am investigating why the "plugin" category is not being respected for your cartridge. I found two issues in your manifest.yml that were preventing it from working properly: 1) https://github.com/britztopher/testcart/blob/master/metadata/manifest.yml#L5-L6 is not valid syntax. I think you may have meant to be specifying "Compatible-Versions:" but since you have no other versions, that is not necessary anyway. 2) https://github.com/britztopher/testcart/blob/master/metadata/manifest.yml#L20-L21 this is also invalid syntax and should just be "- testcart-1.0.0" Once I made those changes in my fork it worked properly. |