First test configuration of Adminer
This commit is contained in:
1
templates/Adminer/0/README.md
Normal file
1
templates/Adminer/0/README.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Adminer
|
||||||
46
templates/Adminer/0/docker-compose.yml
Normal file
46
templates/Adminer/0/docker-compose.yml
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
version: '2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
adminer:
|
||||||
|
image: adminer:standalone
|
||||||
|
dns: # Using Cloudflare DNS
|
||||||
|
- 1.1.1.1
|
||||||
|
- 1.0.0.1
|
||||||
|
- 2606:4700:4700::1111
|
||||||
|
- 2606:4700:4700::1001
|
||||||
|
environment:
|
||||||
|
ADMINER_DESIGN: "pepa-linha"
|
||||||
|
{{- if or .Values.SERVICE_LINK_1 .Values.SERVICE_LINK_2 .Values.SERVICE_LINK_3}}
|
||||||
|
external_links:
|
||||||
|
{{- if .Values.SERVICE_LINK_1}}
|
||||||
|
- ${SERVICE_LINK_1}{{- if .Values.SERVICE_LINK_1_ALIAS}}:${SERVICE_LINK_1_ALIAS}{{- end}}
|
||||||
|
{{- end}}
|
||||||
|
{{- if .Values.SERVICE_LINK_2}}
|
||||||
|
- ${SERVICE_LINK_2}{{- if .Values.SERVICE_LINK_2_ALIAS}}:${SERVICE_LINK_2_ALIAS}{{- end}}
|
||||||
|
{{- end}}
|
||||||
|
{{- if .Values.SERVICE_LINK_3}}
|
||||||
|
- ${SERVICE_LINK_3}{{- if .Values.SERVICE_LINK_3_ALIAS}}:${SERVICE_LINK_3_ALIAS}{{- end}}
|
||||||
|
{{- end}}
|
||||||
|
{{- end}}
|
||||||
|
labels:
|
||||||
|
io.rancher.container.pull_image: always
|
||||||
|
{{- if .Values.HOST_LABEL}}
|
||||||
|
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||||
|
{{- end}}
|
||||||
|
traefik.enable: true
|
||||||
|
### Start Web Segment
|
||||||
|
traefik.frontend.entryPoints: http,https
|
||||||
|
traefik.frontend.headers.forceSTSHeader: true
|
||||||
|
traefik.frontend.headers.referrerPolicy: no-referrer # Security enhancement (Prevents leaking of referer information)
|
||||||
|
traefik.frontend.headers.SSLRedirect: true
|
||||||
|
traefik.frontend.headers.STSIncludeSubdomains: true
|
||||||
|
traefik.frontend.headers.STSPreload: true
|
||||||
|
traefik.frontend.headers.STSSeconds: 15552000
|
||||||
|
traefik.frontend.passHostHeader: true
|
||||||
|
traefik.frontend.rule: Host:${TRAEFIK_HOST}
|
||||||
|
traefik.port: "80"
|
||||||
|
### End Web Segment
|
||||||
|
restart: on-failure
|
||||||
|
volumes:
|
||||||
|
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||||
|
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||||
71
templates/Adminer/0/rancher-compose.yml
Normal file
71
templates/Adminer/0/rancher-compose.yml
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
version: '2'
|
||||||
|
catalog:
|
||||||
|
name: Adminer
|
||||||
|
version: latest
|
||||||
|
# description:
|
||||||
|
# minimum_rancher_version:
|
||||||
|
# maximum_rancher_version:
|
||||||
|
# upgrade_from:
|
||||||
|
# uuid:
|
||||||
|
questions:
|
||||||
|
|
||||||
|
- variable: "HOST_LABEL"
|
||||||
|
label: "Host Label Key/Value Pair"
|
||||||
|
description: |
|
||||||
|
The Key/Value pair of the host which the stack should be deployed.
|
||||||
|
default: "host.id=Host1"
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
|
||||||
|
- variable: "TRAEFIK_HOST"
|
||||||
|
label: "Public Host Domain"
|
||||||
|
description: |
|
||||||
|
The host that Traefik will use to provide public access.
|
||||||
|
default: "subdomain.domain.tld"
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
- variable: "SERVICE_LINK_1"
|
||||||
|
label: "Service 1"
|
||||||
|
description: |
|
||||||
|
(Optional) Create a link to another service
|
||||||
|
required: false
|
||||||
|
type: service
|
||||||
|
|
||||||
|
- variable: "SERVICE_LINK_1_ALIAS"
|
||||||
|
label: "Service 1 Alias"
|
||||||
|
description: |
|
||||||
|
(Optional) Create an alias for the service
|
||||||
|
# default:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
|
||||||
|
- variable: "SERVICE_LINK_2"
|
||||||
|
label: "Service 2"
|
||||||
|
description: |
|
||||||
|
(Optional) Create a link to another service
|
||||||
|
required: false
|
||||||
|
type: service
|
||||||
|
|
||||||
|
- variable: "SERVICE_LINK_2_ALIAS"
|
||||||
|
label: "Service 2 Alias"
|
||||||
|
description: |
|
||||||
|
(Optional) Create an alias for the service
|
||||||
|
# default:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
|
||||||
|
- variable: "SERVICE_LINK_3"
|
||||||
|
label: "Service 3"
|
||||||
|
description: |
|
||||||
|
(Optional) Create a link to another service
|
||||||
|
required: false
|
||||||
|
type: service
|
||||||
|
|
||||||
|
- variable: "SERVICE_LINK_3_ALIAS"
|
||||||
|
label: "Service 3 Alias"
|
||||||
|
description: |
|
||||||
|
(Optional) Create an alias for the service
|
||||||
|
# default:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
8
templates/Adminer/config.yml
Normal file
8
templates/Adminer/config.yml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
name: Adminer
|
||||||
|
description: |
|
||||||
|
A full-featured database management tool available for MySQL, PostgreSQL, SQLite, MS SQL, Oracle, Firebird, SimpleDB, Elasticsearch and MongoDB.
|
||||||
|
version: latest
|
||||||
|
category: Database Administration
|
||||||
|
maintainer: WilliamMiceli
|
||||||
|
# license:
|
||||||
|
# projectURL:
|
||||||
Reference in New Issue
Block a user