Last active
June 17, 2021 13:14
-
-
Save svor/6cdbc6324e3adf669b8d8bf17dececf5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
apiVersion: v2 | |
publisher: eclipse | |
name: che-theia | |
version: latest | |
type: Che Editor | |
displayName: theia-ide | |
title: Eclipse Theia | |
description: Eclipse Theia | |
icon: /v3/images/eclipse-che-logo.png | |
category: Editor | |
repository: 'https://github.com/eclipse-che/che-theia' | |
firstPublicationDate: '2019-03-07' | |
latestUpdateDate: '2021-04-22' | |
spec: | |
endpoints: | |
- name: theia | |
public: true | |
targetPort: 3100 | |
attributes: | |
protocol: http | |
type: ide | |
secure: true | |
cookiesAuthEnabled: true | |
discoverable: false | |
- name: webviews | |
public: true | |
targetPort: 3100 | |
attributes: | |
protocol: http | |
type: webview | |
secure: true | |
cookiesAuthEnabled: true | |
discoverable: false | |
unique: true | |
- name: mini-browser | |
public: true | |
targetPort: 3100 | |
attributes: | |
protocol: http | |
type: mini-browser | |
secure: true | |
cookiesAuthEnabled: true | |
discoverable: false | |
unique: true | |
- name: theia-dev | |
public: true | |
targetPort: 3130 | |
attributes: | |
protocol: http | |
type: ide-dev | |
discoverable: false | |
- name: theia-redirect-1 | |
public: true | |
targetPort: 13131 | |
attributes: | |
protocol: http | |
discoverable: false | |
- name: theia-redirect-2 | |
public: true | |
targetPort: 13132 | |
attributes: | |
protocol: http | |
discoverable: false | |
- name: theia-redirect-3 | |
public: true | |
targetPort: 13133 | |
attributes: | |
protocol: http | |
discoverable: false | |
- name: terminal | |
public: true | |
targetPort: 3333 | |
attributes: | |
protocol: ws | |
type: collocated-terminal | |
discoverable: false | |
secure: true | |
cookiesAuthEnabled: true | |
containers: | |
- name: theia-ide | |
image: 'vsvydenko/che-theia:home' | |
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: 127.0.0.1 | |
mountSources: true | |
ports: | |
- exposedPort: 3100 | |
- exposedPort: 3130 | |
- exposedPort: 13131 | |
- exposedPort: 13132 | |
- exposedPort: 13133 | |
memoryLimit: 512M | |
volumes: | |
- name: plugins | |
mountPath: /plugins | |
- name: theia-local | |
mountPath: /home/theia/.theia | |
- name: che-machine-exec | |
image: 'quay.io/eclipse/che-machine-exec@sha256:98fdc3f341ed683dc0f07176729c887f2b965bade9c27d16dc0e05f9034e624c' | |
ports: | |
- exposedPort: 3333 | |
command: | |
- /go/bin/che-machine-exec | |
- '--url' | |
- '127.0.0.1:3333' | |
initContainers: | |
- name: remote-runtime-injector | |
image: vsvydenko/che-theia-endpoint-runtime-binary:next | |
env: | |
- name: PLUGIN_REMOTE_ENDPOINT_EXECUTABLE | |
value: /remote-endpoint/plugin-remote-endpoint | |
- name: REMOTE_ENDPOINT_VOLUME_NAME | |
value: remote-endpoint | |
volumes: | |
- name: remote-endpoint | |
mountPath: /remote-endpoint | |
ephemeral: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment