diff --git a/templates/Adminer/0/README.md b/templates/Adminer/0/README.md new file mode 100644 index 0000000..7a6a8d0 --- /dev/null +++ b/templates/Adminer/0/README.md @@ -0,0 +1 @@ +# Adminer \ No newline at end of file diff --git a/templates/Adminer/0/docker-compose.yml b/templates/Adminer/0/docker-compose.yml new file mode 100644 index 0000000..159202e --- /dev/null +++ b/templates/Adminer/0/docker-compose.yml @@ -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 \ No newline at end of file diff --git a/templates/Adminer/0/rancher-compose.yml b/templates/Adminer/0/rancher-compose.yml new file mode 100644 index 0000000..e8f30d4 --- /dev/null +++ b/templates/Adminer/0/rancher-compose.yml @@ -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 \ No newline at end of file diff --git a/templates/Adminer/config.yml b/templates/Adminer/config.yml new file mode 100644 index 0000000..ba8e20b --- /dev/null +++ b/templates/Adminer/config.yml @@ -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: \ No newline at end of file