Skip to content
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

feat(devfile): Introduce a devfile version2 #2

Merged
merged 2 commits into from
Sep 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"ms-python.python"
]
}
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "internalConsole"
}
]
}
26 changes: 26 additions & 0 deletions devfile.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
schemaVersion: 2.1.0
metadata:
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's missing the attribute to deploy extensions in the user container ?

Copy link
Contributor Author

@svor svor Sep 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The sidecar image is a bit different then user container image. So what is the right way: deploy extension to the sidecar container or modify user container image?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think for DevWorkspaces, default is to have extensions running in the user container (no longer need to bring the sidecar image)

So it should work with the universal devfile base image

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

but it can be a step 2 (use sidecar image as user image) or step 3 (use universal base image) eclipse-che/che#20507

but as we're moving to it, it may be a good step to report issues on devfile base image if it doesn't work well

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The attribute was added. For this devfile we can use the universal base image.
But for another python samples we probably will need some additional tools/libraries.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will know about that a bit later :-)

name: python-hello-world
attributes:
che-theia.eclipse.org/sidecar-policy: USE_DEV_CONTAINER
components:
- name: python
container:
image: quay.io/devfile/base-developer-image:ubi8-7bd4fe3
volumeMounts:
- name: venv
path: /home/user/.venv
memoryLimit: 512Mi
mountSources: true
- name: venv
volume:
size: 1G
commands:
- id: run
exec:
label: "Run the application"
component: python
workingDir: ${PROJECTS_ROOT}/python-hello-world
commandLine: "python3 hello-world.py"
group:
kind: run