From 796de41932aecf6d87ced8b8f4bed9d8e03481af Mon Sep 17 00:00:00 2001 From: WilliamMiceli Date: Wed, 6 Feb 2019 21:04:32 -0500 Subject: [PATCH 1/3] First trial of Gitea! --- templates/Gitea/0/README.md | 4 ++ templates/Gitea/0/docker-compose.yml | 62 +++++++++++++++++++++++++++ templates/Gitea/0/rancher-compose.yml | 41 ++++++++++++++++++ templates/Gitea/config.yml | 8 ++++ 4 files changed, 115 insertions(+) create mode 100644 templates/Gitea/0/README.md create mode 100644 templates/Gitea/0/docker-compose.yml create mode 100644 templates/Gitea/0/rancher-compose.yml create mode 100644 templates/Gitea/config.yml diff --git a/templates/Gitea/0/README.md b/templates/Gitea/0/README.md new file mode 100644 index 0000000..edb7312 --- /dev/null +++ b/templates/Gitea/0/README.md @@ -0,0 +1,4 @@ +# Gitea + +## Known Issues +* SSH capabilities not yet functional \ No newline at end of file diff --git a/templates/Gitea/0/docker-compose.yml b/templates/Gitea/0/docker-compose.yml new file mode 100644 index 0000000..42cf48a --- /dev/null +++ b/templates/Gitea/0/docker-compose.yml @@ -0,0 +1,62 @@ +version: '2' + +services: + gogs: + image: gitea/gitea:latest + dns: + - 1.1.1.1 + - 1.0.0.1 + environment: + USER_UID: '1000' + USER_GID: '1000' + APP_NAME: 'Gitea: Git with a cup of tea' # Application name, used in the page title. + RUN_MODE: prod # ['dev' | 'prod'] + DISABLE_SSH: true # SSH not yet possible with Traefik + DB_TYPE: postgres + DB_HOST: postgres:5432 + DB_NAME: gitea_db + DB_USER: gitea_user + DB_PASSWD: ${DB_USER_PASS} + 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.web.frontend.entryPoints: http,https + traefik.web.frontend.headers.forceSTSHeader: true + traefik.web.frontend.headers.referrerPolicy: no-referrer # Security enhancement (Prevents leaking of referer information) + traefik.web.frontend.headers.SSLRedirect: true + traefik.web.frontend.headers.STSPreload: true + traefik.web.frontend.headers.STSSeconds: 15552000 + traefik.web.frontend.passHostHeader: true + traefik.web.frontend.rule: Host:${TRAEFIK_HOST} + traefik.web.port: '3000' + ### End Web Segment + links: + - postgres + 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 + - /RancherCattle/${DATA_DIR}/Data:/data + postgres: + image: postgres:9.6 + dns: + - 1.1.1.1 + - 1.0.0.1 + environment: + POSTGRES_DB: gitea_db + POSTGRES_USER: gitea_user + POSTGRES_PASSWORD: ${DB_USER_PASS} + labels: + io.rancher.container.pull_image: always + {{- if .Values.HOST_LABEL}} + io.rancher.scheduler.affinity:host_label: ${HOST_LABEL} + {{- end}} + 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 + - /RancherCattle/${DATA_DIR}/Database:/var/lib/postgresql/data \ No newline at end of file diff --git a/templates/Gitea/0/rancher-compose.yml b/templates/Gitea/0/rancher-compose.yml new file mode 100644 index 0000000..4190d01 --- /dev/null +++ b/templates/Gitea/0/rancher-compose.yml @@ -0,0 +1,41 @@ +version: '2' +catalog: + name: Gitea + 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 of the host which containers 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: "DB_USER_PASS" + label: "Database User Password" + description: | + A secure password to be used by the "gitea_user" database user. + # default: + required: true + type: password + + - variable: "DATA_DIR" + label: "Data Directory" + description: | + The directory to store persistent data for the stack. + default: "Personal/Gitea" + required: true + type: string \ No newline at end of file diff --git a/templates/Gitea/config.yml b/templates/Gitea/config.yml new file mode 100644 index 0000000..1f2470e --- /dev/null +++ b/templates/Gitea/config.yml @@ -0,0 +1,8 @@ +name: Gitea +description: | + Status: EXPERIMENTAL +version: latest +# category: +maintainer: WilliamMiceli +# license: +# projectURL: \ No newline at end of file From fc9bc1896ac75d0915585a4e52f3be53d936879c Mon Sep 17 00:00:00 2001 From: WilliamMiceli Date: Wed, 6 Feb 2019 21:10:06 -0500 Subject: [PATCH 2/3] changed service name --- templates/Gitea/0/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/Gitea/0/docker-compose.yml b/templates/Gitea/0/docker-compose.yml index 42cf48a..e814455 100644 --- a/templates/Gitea/0/docker-compose.yml +++ b/templates/Gitea/0/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: - gogs: + gitea: image: gitea/gitea:latest dns: - 1.1.1.1 From ab687cf9778be6e7a37e3c0620de6410ceb1f49c Mon Sep 17 00:00:00 2001 From: WilliamMiceli Date: Wed, 6 Feb 2019 21:22:28 -0500 Subject: [PATCH 3/3] Final fixes --- templates/Gitea/0/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/Gitea/0/docker-compose.yml b/templates/Gitea/0/docker-compose.yml index e814455..436b23b 100644 --- a/templates/Gitea/0/docker-compose.yml +++ b/templates/Gitea/0/docker-compose.yml @@ -9,9 +9,9 @@ services: environment: USER_UID: '1000' USER_GID: '1000' - APP_NAME: 'Gitea: Git with a cup of tea' # Application name, used in the page title. RUN_MODE: prod # ['dev' | 'prod'] DISABLE_SSH: true # SSH not yet possible with Traefik + ROOT_URL: 'https://${TRAEFIK_HOST}' DB_TYPE: postgres DB_HOST: postgres:5432 DB_NAME: gitea_db