-
Notifications
You must be signed in to change notification settings - Fork 9
feat: Persistent disk, Docker details post, EnvVars in ServicePOST and Image in ServicePOST #6
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
base: master
Are you sure you want to change the base?
Conversation
tazarov
commented
Sep 23, 2023
- Added support for persistent disk in the WebServiceDetails as it is supported by Render API
- Added an example service with disk support in README.md
- Fixed a typo in the flask example's env type

- Fixed an issue with deleting ServiceEnvironmentResource where API returns 200 but code expects 201 - Added conditional populate of disk struct - Added `disk` to schema
|
@jackall3n, I tested the changes locally, and everything seems to be working. |
- Added support for EnvVar in ServicePOST request - Added support for Image type of service in ServicePOST
|
@jackall3n before this can be merged, you need to merge - jackall3n/render-go#4 |
merged |
|
|
||
| if err != nil { | ||
| resp.Diagnostics.AddError("failed to update service variables", err.Error()) | ||
| resp.Diagnostics.AddError("failed to update service variables1", err.Error()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| resp.Diagnostics.AddError("failed to update service variables1", err.Error()) | |
| resp.Diagnostics.AddError("failed to update service variables", err.Error()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this a mistake?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi! Is this the only blocking point for this PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah