Upcoming Che version will have too many requirements for me
This commit is contained in:
@@ -1,43 +0,0 @@
|
|||||||
# Eclipse Che (Single User)
|
|
||||||
|
|
||||||
[Official Website](https://www.eclipse.org/che/)
|
|
||||||
[Docker Page](https://hub.docker.com/r/eclipse/che/)
|
|
||||||
|
|
||||||
[v6 Documentation](https://www.eclipse.org/che/docs/6/che/docs/index.html)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
##### CLI Reference
|
|
||||||
|
|
||||||
USAGE:
|
|
||||||
` docker run -it --rm *<DOCKER_PARAMETERS>* eclipse/che-cli:*<version>* *[COMMAND]*`
|
|
||||||
|
|
||||||
COMMANDS:
|
|
||||||
` action *<action-name>*` Start action on che instance
|
|
||||||
` backup` Backups che configuration and data to /data/backup volume mount
|
|
||||||
` config` Generates a che config from vars; run on any start / restart
|
|
||||||
` destroy` Stops services, and deletes che instance data
|
|
||||||
` dir *<command>*` Use Chedir and Chefile in the directory mounted to :/chedir
|
|
||||||
` download` Pulls Docker images for the current che version
|
|
||||||
` help` This message
|
|
||||||
` info` Displays info about che and the CLI
|
|
||||||
` init` Initializes a directory with a che install
|
|
||||||
` offline` Saves che Docker images into TAR files for offline install
|
|
||||||
` restart` Restart che services
|
|
||||||
` restore` Restores che configuration and data from /data/backup mount
|
|
||||||
` rmi` Removes the Docker images for <version>, forcing a repull
|
|
||||||
` ssh *<wksp-name>* *[machine-name]*` SSH to a workspace if SSH agent enabled
|
|
||||||
` start` Starts che services
|
|
||||||
` stop` Stops che services
|
|
||||||
` sync *<wksp-name>*` Synchronize workspace with local directory mounted to :/sync
|
|
||||||
` test *<test-name>*` Start test on che instance
|
|
||||||
` upgrade` Upgrades che from one version to another with migrations and backups
|
|
||||||
` version` Installed version and upgrade paths
|
|
||||||
|
|
||||||
GLOBAL COMMAND OPTIONS:
|
|
||||||
` --fast` Skips networking, version, nightly and preflight checks
|
|
||||||
` --offline` Runs CLI in offline mode, loading images from disk
|
|
||||||
` --debug` Enable debugging of che server
|
|
||||||
` --trace` Activates trace output for debugging CLI
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
version: '2'
|
|
||||||
services:
|
|
||||||
che-server:
|
|
||||||
image: eclipse/che-server:latest
|
|
||||||
dns:
|
|
||||||
- 1.1.1.1
|
|
||||||
- 1.0.0.1
|
|
||||||
environment:
|
|
||||||
CHE_DOCKER_IP_EXTERNAL: ${EXTERNAL_IP}
|
|
||||||
CHE_HOST: ${TRAEFIK_HOST}
|
|
||||||
CHE_IN_VM: true
|
|
||||||
CHE_SINGLE_PORT: true
|
|
||||||
CHE_SINGLEPORT_WILDCARD__DOMAIN_HOST: ${WILDCARD_DNS}
|
|
||||||
CHE_SINGLEPORT_WILDCARD__DOMAIN_IPLESS: true
|
|
||||||
expose:
|
|
||||||
- "8080"
|
|
||||||
labels:
|
|
||||||
io.rancher.container.pull_image: always
|
|
||||||
{{- if .Values.HOST_LABEL}}
|
|
||||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
|
||||||
{{- end}}
|
|
||||||
{{- if .Values.TRAEFIK_HOST}}
|
|
||||||
traefik.enable: true
|
|
||||||
traefik.port: "8080"
|
|
||||||
{{- if .Values.TRAEFIK_BASIC_AUTH}}
|
|
||||||
traefik.frontend.auth.basic: ${TRAEFIK_BASIC_AUTH}
|
|
||||||
{{- end}}
|
|
||||||
traefik.frontend.entryPoints: http,https
|
|
||||||
traefik.frontend.rule: ${TRAEFIK_HOST}
|
|
||||||
traefik.frontend.passHostHeader: true
|
|
||||||
{{- else}}
|
|
||||||
traefik.enable: false
|
|
||||||
{{- end}}
|
|
||||||
restart: on-failure
|
|
||||||
volumes:
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
- /RancherCattleData/${DATA_DIR}/Data:/data
|
|
||||||
- /RancherCattleData/${DATA_DIR}/Repo:/repo
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
version: '2'
|
|
||||||
catalog:
|
|
||||||
name: Eclipse Che (Single-User)
|
|
||||||
version: latest
|
|
||||||
# description:
|
|
||||||
# minimum_rancher_version:
|
|
||||||
# maximum_rancher_version:
|
|
||||||
# upgrade_from:
|
|
||||||
questions:
|
|
||||||
|
|
||||||
- variable: HOST_LABEL
|
|
||||||
label: "Host Label Key/Value Pair"
|
|
||||||
description: |
|
|
||||||
The Label Key/Value pair on the host which containers should be deployed
|
|
||||||
default: "host.id=Host2"
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
|
|
||||||
- variable: "CHE_HOST"
|
|
||||||
label: "CHE_HOST"
|
|
||||||
description: |
|
|
||||||
default: "subdomain.domain.tld"
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
|
|
||||||
- variable: "TRAEFIK_HOST"
|
|
||||||
label: "Public Host Domain"
|
|
||||||
description: |
|
|
||||||
The host that Traefik will use to provide public access.
|
|
||||||
Leaving this empty will disable Traefik on this stack.
|
|
||||||
default: "Host:subdomain.domain.tld,HostRegexp:.*.subdomain.domain.tld"
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
|
|
||||||
- variable: "EXTERNAL_IP"
|
|
||||||
label: "EXTERNAL_IP"
|
|
||||||
#description:
|
|
||||||
#default: ""
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
|
|
||||||
- variable: "WILDCARD_DNS"
|
|
||||||
label: "WILDCARD_DNS"
|
|
||||||
#description:
|
|
||||||
#default: ""
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
|
|
||||||
- variable: "TRAEFIK_BASIC_AUTH"
|
|
||||||
label: "Basic Authentication Expression"
|
|
||||||
description: |
|
|
||||||
Sets basic authentication for that frontend in CSV format "User:MD5_Hash,User:MD5_Hash".
|
|
||||||
Leaving this empty will disable Traefik's Basic Authentication functionality
|
|
||||||
#default: ""
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
|
|
||||||
- variable: DATA_DIR
|
|
||||||
label: "Data Directory"
|
|
||||||
description: |
|
|
||||||
The directory to store persistent data
|
|
||||||
default: "Personal/EclipseChe-Single"
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 46 KiB |
@@ -1,8 +0,0 @@
|
|||||||
name: Eclipse Che (Single-User)
|
|
||||||
description: |
|
|
||||||
Status: NOT READY
|
|
||||||
version: latest
|
|
||||||
# category:
|
|
||||||
maintainer: WilliamMiceli
|
|
||||||
# license:
|
|
||||||
projectURL: https://www.eclipse.org/che/
|
|
||||||
Reference in New Issue
Block a user