101 lines
3.1 KiB
YAML
101 lines
3.1 KiB
YAML
kind: DevWorkspace
|
|
apiVersion: workspace.devfile.io/v1alpha2
|
|
metadata:
|
|
name: theia-next
|
|
spec:
|
|
started: true
|
|
routingClass: che
|
|
template:
|
|
projects:
|
|
- name: web-nodejs-sample
|
|
git:
|
|
remotes:
|
|
origin: "https://github.com/che-samples/web-nodejs-sample.git"
|
|
components:
|
|
### BEGIN Contributions from Theia plugin ###
|
|
- name: plugins
|
|
volume: {}
|
|
- name: theia-ide
|
|
attributes:
|
|
"app.kubernetes.io/name": che-theia.eclipse.org
|
|
"app.kubernetes.io/part-of": che.eclipse.org
|
|
"app.kubernetes.io/component": editor
|
|
container:
|
|
image: "quay.io/eclipse/che-theia:next"
|
|
env:
|
|
- name: THEIA_PLUGINS
|
|
value: local-dir:///plugins
|
|
- name: HOSTED_PLUGIN_HOSTNAME
|
|
value: 0.0.0.0
|
|
- name: HOSTED_PLUGIN_PORT
|
|
value: "3130"
|
|
- name: THEIA_HOST
|
|
value: 0.0.0.0
|
|
volumeMounts:
|
|
- path: "/plugins"
|
|
name: plugins
|
|
mountSources: true
|
|
memoryLimit: "512M"
|
|
endpoints:
|
|
- name: "theia"
|
|
exposure: public
|
|
targetPort: 3100
|
|
secure: true
|
|
protocol: http
|
|
attributes:
|
|
type: ide
|
|
- name: "webviews"
|
|
exposure: public
|
|
targetPort: 3100
|
|
protocol: http
|
|
secure: true
|
|
attributes:
|
|
type: webview
|
|
unique: "true"
|
|
- name: "theia-dev"
|
|
exposure: public
|
|
targetPort: 3130
|
|
protocol: http
|
|
attributes:
|
|
type: ide-dev
|
|
- name: "theia-redir-1"
|
|
exposure: public
|
|
targetPort: 13131
|
|
protocol: http
|
|
- name: "theia-redir-2"
|
|
exposure: public
|
|
targetPort: 13132
|
|
protocol: http
|
|
- name: "theia-redir-3"
|
|
exposure: public
|
|
targetPort: 13133
|
|
protocol: http
|
|
- name: che-theia-terminal
|
|
attributes:
|
|
"app.kubernetes.io/name": che-theia.eclipse.org
|
|
"app.kubernetes.io/part-of": che.eclipse.org
|
|
"app.kubernetes.io/component": che-theia-terminal
|
|
container:
|
|
image: "quay.io/eclipse/che-machine-exec:nightly"
|
|
command: ['/go/bin/che-machine-exec']
|
|
args:
|
|
- '--url'
|
|
- '0.0.0.0:3333'
|
|
- '--pod-selector'
|
|
- controller.devfile.io/devworkspace_id=$(DEVWORKSPACE_ID)
|
|
endpoints:
|
|
- name: "che-theia-terminal"
|
|
exposure: public
|
|
targetPort: 3333
|
|
protocol: ws
|
|
secure: true
|
|
attributes:
|
|
type: collocated-terminal
|
|
### END Contributions from che-theia plugin ###
|
|
commands:
|
|
- id: say-hello
|
|
exec:
|
|
component: plugin
|
|
commandLine: echo "Hello from $(pwd)"
|
|
workingDir: ${PROJECTS_ROOT}/project/app
|