-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce devfile for testing purposes
- Loading branch information
Showing
3 changed files
with
50 additions
and
4 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
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,39 @@ | ||
apiVersion: v2 | ||
publisher: fbenoit | ||
name: intellij-NOVNC | ||
version: 2020.2.2 | ||
type: Che Editor | ||
displayName: IntelliJ IDEA Community Edition | ||
title: IntelliJ IDEA Community Edition (in browser using noVNC) as editor for Eclipse Che | ||
description: IntelliJ IDEA Community Edition running on the Web with noVNC | ||
icon: https://resources.jetbrains.com/storage/products/intellij-idea/img/meta/intellij-idea_logo_300x300.png | ||
category: Editor | ||
repository: https://github.com/che-incubator/che-editor-intellij-community | ||
firstPublicationDate: "2020-09-25" | ||
spec: | ||
endpoints: | ||
# hack (use dirigible endpoint name as it is part of liveness probes) | ||
- name: "dirigible" | ||
public: true | ||
targetPort: 8080 | ||
attributes: | ||
protocol: http | ||
type: ide | ||
path: /vnc.html?resize=remote&autoconnect=true&reconnect=true | ||
containers: | ||
- name: intellij-novnc | ||
image: "quay.io/che-incubator/che-editor-intellij-community:latest" | ||
mountSources: true | ||
volumes: | ||
- mountPath: "/intellij-config" | ||
name: intellij-config | ||
volumes: | ||
- mountPath: "/home/user/.local" | ||
name: intellij-local | ||
volumes: | ||
- mountPath: "/home/user/.java" | ||
name: intellij-java | ||
ports: | ||
- exposedPort: 8080 | ||
memoryLimit: "2048M" | ||
|
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,7 @@ | ||
metadata: | ||
name: che-intellij- | ||
components: | ||
- type: cheEditor | ||
reference: 'https://raw.githubusercontent.com/che-incubator/che-editor-intellij-community/devfiles/master/meta.yaml' | ||
alias: theia-editor | ||
apiVersion: 1.0.0 |