-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release] Bump to 7.24.0-SNAPSHOT in master (#754)
* [release] Bump to 7.24.0-SNAPSHOT in master Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com> * chore(ci): In order to produce correct meta.yaml files, it requires to have full history in order to grab che-plugin-sidecar tags from sidecar directories Change-Id: I27a96110b57e1ed62735cf2d8e84d535a837da14 Signed-off-by: Florent Benoit <fbenoit@redhat.com> * Update CODEOWNERS (#758) Adding Sun to CODEOWNERS as he is now on the plugins team. * Introduce a che-editors file (#753) * Introduce a che-editors file Closes eclipse-che/che#18214 Signed-off-by: Eric Williams <ericwill@redhat.com> * Remove repository fields, use id to denote version differences Signed-off-by: Eric Williams <ericwill@redhat.com> * Update che-theia version Signed-off-by: Eric Williams <ericwill@redhat.com> Co-authored-by: Mykhailo Kuznietsov <mkuznets@redhat.com> Co-authored-by: Florent Benoit <fbenoit@redhat.com> Co-authored-by: Eric Williams <ericwill@redhat.com>
- Loading branch information
1 parent
3e858fc
commit 493c1ed
Showing
5 changed files
with
136 additions
and
3 deletions.
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 |
---|---|---|
@@ -1 +1 @@ | ||
7.23.0-SNAPSHOT | ||
7.24.0-SNAPSHOT |
30 changes: 30 additions & 0 deletions
30
v3/plugins/eclipse/che-machine-exec-plugin/7.23.0/meta.yaml
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
apiVersion: v2 | ||
publisher: eclipse | ||
name: che-machine-exec-plugin | ||
version: 7.23.0 | ||
type: Che Plugin | ||
displayName: Che machine-exec Service | ||
title: Che machine-exec Service Plugin | ||
description: Che Plug-in with che-machine-exec service to provide creation terminal | ||
or tasks for Eclipse Che workspace containers. | ||
icon: https://raw.githubusercontent.com/eclipse/che-plugin-registry/master/v3/images/eclipse-che-logo.png | ||
repository: https://github.com/eclipse/che-machine-exec/ | ||
firstPublicationDate: "2020-12-09" | ||
category: Other | ||
spec: | ||
endpoints: | ||
- name: "che-machine-exec" | ||
public: true | ||
targetPort: 4444 | ||
attributes: | ||
protocol: ws | ||
type: terminal | ||
discoverable: false | ||
secure: true | ||
cookiesAuthEnabled: true | ||
containers: | ||
- name: che-machine-exec | ||
image: "quay.io/eclipse/che-machine-exec:7.23.0" | ||
ports: | ||
- exposedPort: 4444 | ||
command: ['/go/bin/che-machine-exec', '--url', '127.0.0.1:4444'] |
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 |
---|---|---|
@@ -1 +1 @@ | ||
7.22.2 | ||
7.23.0 |
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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
apiVersion: v2 | ||
publisher: eclipse | ||
name: che-theia | ||
version: 7.23.0 | ||
type: Che Editor | ||
displayName: theia-ide | ||
title: Eclipse Theia | ||
description: Eclipse Theia | ||
icon: https://raw.githubusercontent.com/theia-ide/theia/master/logo/theia-logo-no-text-black.svg?sanitize=true | ||
category: Editor | ||
repository: https://github.com/eclipse/che-theia | ||
firstPublicationDate: "2020-12-09" | ||
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 | ||
containers: | ||
- name: theia-ide | ||
image: "quay.io/eclipse/che-theia:7.23.0" | ||
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 | ||
volumes: | ||
- mountPath: "/plugins" | ||
name: plugins | ||
mountSources: true | ||
ports: | ||
- exposedPort: 3100 | ||
- exposedPort: 3130 | ||
- exposedPort: 13131 | ||
- exposedPort: 13132 | ||
- exposedPort: 13133 | ||
memoryLimit: "512M" | ||
initContainers: | ||
- name: remote-runtime-injector | ||
image: "quay.io/eclipse/che-theia-endpoint-runtime-binary:7.23.0" | ||
volumes: | ||
- mountPath: "/remote-endpoint" | ||
name: remote-endpoint | ||
ephemeral: true | ||
env: | ||
- name: PLUGIN_REMOTE_ENDPOINT_EXECUTABLE | ||
value: /remote-endpoint/plugin-remote-endpoint | ||
- name: REMOTE_ENDPOINT_VOLUME_NAME | ||
value: remote-endpoint |
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 |
---|---|---|
@@ -1 +1 @@ | ||
7.22.2 | ||
7.23.0 |