You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Automated deployment of app.yml with a correct deployment manifest taken from mcctl does not work. In the created App, deploymentmanifest field is empty. This can be easily fixed by changing this:
for (key, alias) in (("access_ports", "accessports"),
("default_flavor", "defaultflavor"),
("image_path", "imagepath"),
("image_type", "imagetype"):
into this:
for (key, alias) in (("access_ports", "accessports"),
("default_flavor", "defaultflavor"),
("image_path", "imagepath"),
("image_type", "imagetype"),
("deployment_manifest", "deploymentmanifest")):
in deploy-app.py.
The text was updated successfully, but these errors were encountered:
Automated deployment of app.yml with a correct deployment manifest taken from mcctl does not work. In the created App, deploymentmanifest field is empty. This can be easily fixed by changing this:
into this:
in deploy-app.py.
The text was updated successfully, but these errors were encountered: