Testing done, will change originals

This commit is contained in:
WilliamMiceli
2018-09-20 22:55:13 -04:00
parent 9835a1d591
commit 7ff358d41e
9 changed files with 0 additions and 244 deletions

View File

@@ -1 +0,0 @@
# Bind

View File

@@ -1,26 +0,0 @@
version: '2'
services:
bind:
image: sameersbn/bind
dns:
- 1.1.1.1
- 1.0.0.1
environment:
WEBMIN_ENABLED: ${WEBMIN_ENABLED}
{{- if eq .Values.WEBMIN_ENABLED "true"}}
ROOT_PASSWORD: ${WEBMIN_ROOT_PASS}
{{- end}}
labels:
io.rancher.container.pull_image: always
{{- if (.Values.HOST_LABEL)}}
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
{{- end}}
ports:
- "53:53/tcp"
- "53:53/udp"
{{- if eq .Values.WEBMIN_ENABLED "true"}}
- "${WEBMIN_PORT}:10000"
{{- end}}
restart: on-failure
volumes:
- /RancherCattleData/${DATA_DIR}/Data:/data

View File

@@ -1,61 +0,0 @@
version: '2'
catalog:
name: Bind
version: latest
# description:
# minimum_rancher_version:
# maximum_rancher_version:
# upgrade_from:
questions:
- variable: "HOST_LABEL"
label: "Host Label Key/Value Pair"
description: |
The Key/Value pair on the host which Bind should be deployed.
default: "host.id=Controller"
required: false
type: string
- variable: "WEBMIN_ENABLED"
label: "Enable Webmin"
description: |
Enable or Disable Webmin.
default: true
required: true
type: boolean
- variable: "WEBMIN_ROOT_PASS"
label: "Webmin Password"
description: |
The password for the Webmin "root" user. If unset, it will be "password".
If Webmin is disabled, this will not have any effect.
# default:
required: false
type: password
- variable: "WEBMIN_PORT"
label: "Webmin Port"
description: |
The port that the Webmin interface will be accessible on.
default: "1100"
required: false
type: string
- variable: DATA_DIR
label: "Data Directory"
description: |
The directory within the stack directory to store data
default: "Personal/Bind"
required: true
type: string
bind:
scale: 1
health_check:
port: 53
interval: 2000
initializing_timeout: 20000
unhealthy_threshold: 3
strategy: recreate
healthy_threshold: 2
response_timeout: 2000

View File

@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="600" height="330.834" viewBox="0 0 600 330.834"><defs><style>.a,.c{fill:#fff;}.b{font-size:32px;}.b,.c{font-family:OCRAExtended, OCR A Extended;}.c{font-size:160px;}.d{fill:#007fff;}.e{font-size:42px;fill:#e6f0fa;font-family:ImprintMT-Shadow, Imprint MT Shadow;}</style></defs><title>catalogIcon-bind</title><rect class="a" width="600" height="330"/><rect width="600" height="220"/><text class="b" transform="translate(87.0571 263.667)">DNS Server with Webmin<tspan x="67.6484" y="38.4004">Admin Interface</tspan></text><text class="c" transform="translate(106.7188 165.3335)">BIND</text><path class="d" d="M596,4V326H4V4H596m4-4H0V330H600V0Z"/><rect class="d" x="550" y="280" width="50" height="50"/><text class="e" transform="translate(553.375 320.375)">W</text></svg>

Before

Width:  |  Height:  |  Size: 817 B

View File

@@ -1,8 +0,0 @@
name: Bind
description: |
BIND DNS server with Webmin admin interface
version: latest
category: Networking
maintainer: WilliamMiceli
# license:
# projectURL:

View File

@@ -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

View File

@@ -1,37 +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: ${TRAEFIK_HOST}
CHE_HOST: ${TRAEFIK_HOST}
CHE_IN_VM: true
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: "80"
{{- if .Values.TRAEFIK_BASIC_AUTH}}
traefik.frontend.auth.basic: ${TRAEFIK_BASIC_AUTH}
{{- end}}
# traefik.frontend.headers.SSLRedirect: true
traefik.frontend.entryPoints: http,https
traefik.frontend.redirect.entryPoint: https
traefik.frontend.redirect.permanent: true
traefik.frontend.rule: Host:${TRAEFIK_HOST}
{{- else}}
traefik.enable: false
{{- end}}
ports:
- "${CHE_PORT}:8080"
restart: on-failure
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /RancherCattleData/${DATA_DIR}/Data:/data
- /RancherCattleData/${DATA_DIR}/Repo:/repo

View File

@@ -1,59 +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: "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: "subdomain.domain.tld"
required: false
type: string
# - variable: "HOST_IP"
# label: "Host IP Address"
# description: |
# IP of the host system
# default: "0.0.0.0"
# required: true
# type: string
- variable: "CHE_PORT"
label: "Port Number"
description: |
Port to access the web interface on
default: "20100"
required: true
type: string
- variable: "TRAEFIK_BASIC_AUTH"
label: "Basic Authentication Expression"
description: |
Sets basic authentication for that frontend in CSV format "User:Hash,User: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

View File

@@ -1,8 +0,0 @@
name: Eclipse Che (Single-User)
description: |
Status: NOT READY
# version:
# category:
maintainer: WilliamMiceli
# license:
projectURL: https://www.eclipse.org/che/