Hi, I am trying to add the option catchall_document: index.html
to my app spec via doctl. However I recieve 500 server error evertime I run this command:
doctl apps update <app_id> --spec ~/dev/.do/quiz-app.yaml
.
doctl apps spec validate
says my spec is valid. What am I doing wrong and why cannot update my app spec at all from doctl???
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
This comment has been deleted
Hi @miccoh,
Usually this means that there is a validation error in the spec that is mis-categorized as a 500 error instead. Could you post the YAML that you’re trying to upload? Do you happen to have error_document
configured as well? It’s mutually exclusive with catchall_document
so you’ll need to remove it if so.
If you would like to, you can add the --trace
option to doctl to print the full details of the request and attach it to a support ticket so that the team can take a closer look.
As for the doctl apps spec validate
command, currently it only does basic validation around the YAML structure. We’re working on expanding the scope of validation checks that it performs, but currently it does not include all the rules.
Click below to sign up and get $100 of credit to try our products over 60 days!
the app spec:
I also tried to rename my default branches to main instead of master