项目作者: jcpowermac

项目描述 :
Ansible Playbook Bundle for Eclipse Che
高级语言: Vim script
项目地址: git://github.com/jcpowermac/apb-che.git
创建时间: 2017-06-30T19:14:42Z
项目社区:https://github.com/jcpowermac/apb-che

开源协议:

下载


Docker Repository on Quay

Eclipse Che stack for Ansible Playbook Bundle

Provides an easy way to get started with APBs without having to install any software
except Docker.

Install

  1. To allow the workspace access to the host’s docker instance and add GitHub OAuth modify data/che.env. See https://eclipse.org/che/docs/ide/git-svn/#github-oauth for more information.

    1. CHE_HOST=<ip_address>
    2. CHE_SINGLE_PORT=false
    3. # Optional, but required if running `docker build` within workspace
    4. CHE_WORKSPACE_VOLUME=/var/run/docker.sock:/var/run/docker.sock:rw,Z;
    5. # Optional, but easier to manage
    6. CHE_OAUTH_GITHUB_CLIENTID=
    7. CHE_OAUTH_GITHUB_CLIENTSECRET=
    8. CHE_OAUTH_GITHUB_AUTHURI= https://github.com/login/oauth/authorize
    9. CHE_OAUTH_GITHUB_TOKENURI= https://github.com/login/oauth/access_token
    10. CHE_OAUTH_GITHUB_REDIRECTURIS=http://${CHE_HOST}:${SERVER_PORT}/wsmaster/api/oauth/callback
  2. Start Che

  3. Add the stack to Che via the API.

    1. # httpie
    2. http http://localhost:8080/wsmaster/api/stack < stack.json
    3. # curl
    4. curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d @stack.json http://localhost:8080/wsmaster/api/stack