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