-
Notifications
You must be signed in to change notification settings - Fork 244
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
Implement devfile state in odo api #6941
Merged
openshift-merge-robot
merged 45 commits into
redhat-developer:main
from
feloy:feature-6903/ui-devfile-state
Jul 5, 2023
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
19432bf
POST /devstate/container
feloy 790a6af
Implement POST /devstate/container
feloy 861fee8
Generate DELETE /devstate/container/{containerName}
feloy 8f08934
Implement DELETE /devstate/container/{containerName}
feloy 8cbefc8
Serve /devstate/image
feloy d575f7b
Implement /devstate/image
feloy 88c6d3d
Serve /devstate/resource
feloy 4fb98cf
Implement /devstate/resource
feloy 35e5837
Move Components specific code to components.go
feloy 41da777
Serve /devstate/*command
feloy f691407
Implement /devstate/*command
feloy 02e0419
Serve /devstate/metadata
feloy b265cfc
Implement /devstate/metadata
feloy 230d89e
Serve devstate/chart
feloy 376249c
Implement /devstate/chart
feloy f8480b1
Create a DevfileContent schema reference
feloy 1d15e55
Use `DELETE /command/{name}` instead of `DELETE /*Command/{name}`
feloy 482f0c6
Serve /devstate/command/move
feloy 7e4f329
Implement /devstate/command/move
feloy d0e8a40
Serve /devstate/command/{name}/[un]setDefault
feloy 4f1a1b1
Implement /devstate/command/{name}/[un]setDefault
feloy c161bf8
serve /devstate/events
feloy a3c1e58
Implement /devstate/events
feloy 307a40b
Serve /devstate/quantityValid
feloy 8de7916
Implement /devstate/quantityValid
feloy be6d72a
Add json tag to API result value
feloy 0e14a1f
Sets a proxy for the API
feloy 8c29192
Move calls from wasm to api (first part)
feloy 960a534
Implement PUT /devsatte/devfile
feloy a7d66f7
Move calls from wasm to api (end)
feloy 40e8421
Implement GET /devstate/devfile
feloy 4412286
Implement DELETE /devstate/devfile
feloy 84c558b
At startup, get devfile from api, not from localStorage
feloy c63ee37
Rename service wasmGo -> devstate
feloy 4a7b298
Remove wasm module
feloy a9bd13e
Update to latest devfile-lifecycle version, license compatible
feloy 500ad16
Apply suggestions from code review
feloy 94208d3
Remove wasm from ui/{Makefile/devfile.yaml}
feloy a9c3ef8
Define DevfileContent into apispec
feloy 372d3fc
Define required fields
feloy 2916f16
Generate API models from front
feloy 68d5bb7
Regenerate API server after spec changes
feloy 11299bc
Fix examples case
feloy 74057b6
Fix github action e2e tests not running
feloy cdacd69
Make target for all generated api code
feloy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ on: | |
branches: | ||
- main | ||
paths: | ||
- 'ui' | ||
- 'ui/**' | ||
- '.github/workflows/ui-e2e.yaml' | ||
|
||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Could we also have a single Make target that would generate both the server and the client codes?