Receiving an error when attempting to upload your application and manifest file.
Error Manifest file check has failed. Ensure that each component must have a matching Cloud Foundry application definition in the manifest file.
Solution
When creating your manifest.yml file, be sure to include every service to be used. In the Developer Cockpit we use the term "components" to name a single service that maps to one Cloud Foundry application. The name of the component must match the name of the Cloud Foundry application which is defined in the Cloud Foundry manifest configuration file.
In this example, manifest.yml file, frontendapp and backendapp are clearly defined.
---
applications:
- name: frontendapp
path: ./DemoApp-UI/dist/
buildpack: staticfile_buildpack
random-route: true
- name: backendapp
path: ./DemoApp/demo.jar
buildpack: java_buildpack
random-route: true
Notes