-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
324 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
name: loomio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Loomio Helm sub-chart | ||
|
||
## secrets | ||
|
||
``` | ||
SECRET_COOKIE_TOKEN=`openssl rand -base64 48` | ||
DEVISE_SECRET=`openssl rand -base64 48` | ||
PGPASS= | ||
DATABASE_URL=postgresql://postgres:$PGPASS@loomio-db/loomio_production | ||
SMTP_PASSWORD= | ||
SMTP_USERNAME= | ||
kubectl create secret generic loomio-db --from-literal=POSTGRES_PASSWORD=$PGPASS | ||
kubectl create secret generic loomio \ | ||
--from-literal=DATABASE_URL=$DATABASE_URL \ | ||
--from-literal=SECRET_COOKIE_TOKEN=$SECRET_COOKIE_TOKEN \ | ||
--from-literal=DEVISE_SECRET=$DEVISE_SECRET \ | ||
--from-literal=SMTP_USERNAME=$SMTP_USERNAME \ | ||
--from-literal=SMTP_PASSWORD=$SMTP_PASSWORD | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
{{ if .Values.enabled }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: loomio | ||
data: | ||
# this is the hostname of your app used by loomio | ||
CANONICAL_HOST: talk.midburn.org | ||
|
||
# this is to tell nginx that you want requests for this hostname to come to the app | ||
VIRTUAL_HOST: talk.midburn.org | ||
SITE_NAME: talk.midburn.org | ||
|
||
# the number of dots in your hostname | ||
TLD_LENGTH: "2" | ||
|
||
# uncomment this if you want a default subdomain of www (eg: www.loomio.org) | ||
# DEFAULT_SUBDOMAIN=www | ||
|
||
# smtp settings | ||
SUPPORT_EMAIL: support@talk.midburn.org | ||
SMTP_DOMAIN: talk.midburn.org | ||
SMTP_SERVER: in-v3.mailjet.com | ||
SMTP_PORT: "2525" | ||
# SMTP_USERNAME: smtpusername | ||
# SMTP_PASSWORD: smtppassword | ||
|
||
REPLY_HOSTNAME: talk.midburn.org | ||
|
||
# helper bot is the account which welcomes people to their groups. | ||
HELPER_BOT_EMAIL: support@talk.midburn.org | ||
RAILS_ENV: production | ||
|
||
# Number of webserver processes and threads | ||
# threads are per worker. See https://github.com/puma/puma | ||
PUMA_WORKERS: "2" | ||
MIN_THREADS: "2" | ||
MAX_THREADS: "8" | ||
|
||
# Force all connections to be https | ||
FORCE_SSL: "1" | ||
|
||
# Enable rate limiting on group creation, other POST actions | ||
USE_RACK_ATTACK: "1" | ||
|
||
# Send catch up email (missed yesterday) weekly | ||
# EMAIL_CATCH_UP_WEEKLY=1 | ||
|
||
# subscribe on participation default for new users | ||
# uncomment this to change "subscribe on participation" to be false for new users | ||
# EMAIL_ON_PARTICIPATION_DEFAULT_FALSE=1 | ||
# | ||
# | ||
# Errbit | ||
# ERRBIT_HOST | ||
# ERRBIT_KEY | ||
# ERRBIT_PORT | ||
|
||
# Uncomment these to disable features | ||
# FEATURES_DISABLE_CREATE_USER=1 # users must be invited | ||
# FEATURES_DISABLE_CREATE_GROUP=1 # users cannot create groups | ||
# FEATURES_DISABLE_PUBLIC_GROUPS=1 # disable /explore | ||
# FEATURES_DISABLE_HELP_LINK=1 # disable the help link | ||
# MAX_PENDING_INVITATIONS=100 # maximum unaccepted invitations a group have have | ||
|
||
# Enable search engines to index public content | ||
# ALLOW_ROBOTS=1 | ||
|
||
# oauth providers, to let your users login using external accounts | ||
# FACEBOOK_APP_KEY=REPLACE | ||
# FACEBOOK_APP_SECRET=REPLACE | ||
# TWITTER_APP_KEY=REPLACE | ||
# TWITTER_APP_SECRET=REPLACE | ||
# GOOGLE_APP_KEY=REPLACE | ||
# GOOGLE_APP_SECRET=REPLACE | ||
# SLACK_APP_KEY | ||
# SLACK_APP_SECRET | ||
|
||
# Theme images | ||
# images should be a multiple of 32px tall. | ||
# THEME_ICON_SRC=/files/icon.png | ||
# THEME_APP_LOGO_SRC=/files/logo.svg | ||
# THEME_EMAIL_HEADER_LOGO_SRC=/files/logo_128h.png | ||
# THEME_EMAIL_FOOTER_LOGO_SRC=/files/logo_64h.png | ||
|
||
# used in emails. use rgb or hsl values, not hex | ||
# THEME_PRIMARY_COLOR=rgb(255,167,38) | ||
# THEME_ACCENT_COLOR=rgb(0,188,212)') | ||
# THEME_TEXT_ON_PRIMARY_COLOR=rgb(255,255,255) | ||
# THEME_TEXT_ON_ACCENT_COLOR=rgb(255,255,255) | ||
|
||
# select a palette from material: https://material.io/guidelines/style/color.html#color-color-palette | ||
# or generate your own theme at http://mcg.mbitson.com/ | ||
# THEME_PRIMARY_PALETTE=custom_primary | ||
# THEME_ACCENT_PALETTE=custom_accent | ||
# THEME_PRIMARY_PALETTE_CONFIG={"default": "500"} | ||
# THEME_ACCENT_PALETTE_CONFIG={"default": "500", "hue-1": "400", "hue-2": "300", "hue-3": "200"} | ||
# THEME_CUSTOM_PRIMARY_PALETTE={ "50": "f2e0e5", "100": "deb3bf", "200": "c98094", "300": "b34d69", "400": "a22648", "500": "920028", "600": "8a0024", "700": "7f001e", "800": "750018", "900": "63000f", "A100": "ff939b", "A200": "ff606c", "A400": "ff2d3c", "A700": "ff1425", "contrastDefaultColor": "light", "contrastDarkColors": [ "50", "100", "200", "A100", "A200" ], "contrastLightColors": [ "300", "400", "500", "600", "700", "800", "900", "A400", "A700" ] } | ||
# THEME_CUSTOM_ACCENT_PALETTE={ "50": "e9f4fb", "100": "c8e4f6", "200": "a3d3f0", "300": "7ec1ea", "400": "62b3e6", "500": "46a6e1", "600": "3f9edd", "700": "3795d9", "800": "2f8bd5", "900": "207bcd", "A100": "ffffff", "A200": "d2e8ff", "A400": "9fcfff", "A700": "85c2ff", "contrastDefaultColor": "light", "contrastDarkColors": [ "50", "100", "200", "300", "400", "500", "600", "700", "A100", "A200", "A400", "A700" ], "contrastLightColors": [ "800", "900" ] } | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{{ if .Values.enabled }} | ||
apiVersion: apps/v1beta1 | ||
kind: Deployment | ||
metadata: | ||
name: loomio-db | ||
spec: | ||
replicas: 1 | ||
strategy: | ||
type: Recreate | ||
template: | ||
metadata: | ||
labels: | ||
app: loomio-db | ||
spec: | ||
containers: | ||
- name: loomio-db | ||
image: postgres:9.6 | ||
ports: | ||
- containerPort: 5432 | ||
resources: {"requests": {"cpu": "100m", "memory": "400Mi"}, "limits": {"memory": "1Gi"}} | ||
env: | ||
- name: PGDATA | ||
value: /pgdata | ||
- name: POSTGRES_PASSWORD | ||
valueFrom: | ||
secretKeyRef: {name: loomio-db, key: POSTGRES_PASSWORD} | ||
volumeMounts: | ||
- name: pgdata | ||
mountPath: /pgdata | ||
subPath: pgdata | ||
volumes: | ||
- name: pgdata | ||
gcePersistentDisk: | ||
# gcloud compute disks create --size=100GB --zone=us-central1-a loomio-db-4 | ||
pdName: loomio-db-4 | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: loomio-db | ||
spec: | ||
ports: | ||
- name: '5432' | ||
port: 5432 | ||
selector: | ||
app: loomio-db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
{{ if .Values.enabled }} | ||
apiVersion: apps/v1beta1 | ||
kind: Deployment | ||
metadata: | ||
name: loomio | ||
spec: | ||
replicas: 1 | ||
strategy: | ||
type: Recreate | ||
template: | ||
metadata: | ||
labels: | ||
app: loomio | ||
spec: | ||
containers: | ||
- name: loomio | ||
image: loomio/loomio:stable | ||
ports: | ||
- containerPort: 3000 | ||
resources: {"requests": {"cpu": "100m", "memory": "400Mi"}, "limits": {"memory": "1Gi"}} | ||
envFrom: | ||
- configMapRef: {"name": "loomio"} | ||
- secretRef: {"name": "loomio"} | ||
{{ if .Values.initializeDb }} | ||
command: | ||
- bash | ||
- "-c" | ||
- | | ||
while ! rake db:setup; do sleep 5; done | ||
echo rake db:setup completed successfully, disable initializeDb value and redeploy | ||
while true; do sleep 86400; done | ||
{{ end }} | ||
volumeMounts: | ||
- name: data | ||
subPath: uploads | ||
mountPath: /loomio/public/system | ||
- name: data | ||
subPath: files | ||
mountPath: /loomio/public/files | ||
- name: data | ||
subPath: plugins | ||
mountPath: /loomio/plugins/docker | ||
- name: data | ||
subPath: client | ||
mountPath: /loomio/public/client | ||
{{ if .Values.initializeDb }}{{ else }} | ||
- name: worker | ||
image: loomio/loomio:stable | ||
resources: {"requests": {"cpu": "100m", "memory": "400Mi"}, "limits": {"memory": "1Gi"}} | ||
envFrom: | ||
- configMapRef: {"name": "loomio"} | ||
- secretRef: {"name": "loomio"} | ||
env: | ||
- name: TASK | ||
value: worker | ||
volumeMounts: | ||
- name: data | ||
subPath: uploads | ||
mountPath: /loomio/public/system | ||
- name: data | ||
subPath: files | ||
mountPath: /loomio/public/files | ||
- name: data | ||
subPath: plugins | ||
mountPath: /loomio/plugins/docker | ||
- name: data | ||
subPath: client | ||
mountPath: /loomio/public/client | ||
{{ end }} | ||
volumes: | ||
- name: data | ||
gcePersistentDisk: | ||
# gcloud compute disks create --size=100GB --zone=us-central1-a loomio-data | ||
pdName: loomio-data | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{{ if .Values.enabled }} | ||
apiVersion: apps/v1beta1 | ||
kind: Deployment | ||
metadata: | ||
name: loomio-mailin | ||
spec: | ||
replicas: 1 | ||
strategy: | ||
type: Recreate | ||
template: | ||
metadata: | ||
labels: | ||
app: loomio-mailin | ||
spec: | ||
containers: | ||
- name: mailin | ||
image: loomio/mailin-docker:latest | ||
ports: | ||
- containerPort: 25 | ||
resources: {"requests": {"cpu": "50m", "memory": "200Mi"}, "limits": {"memory": "1Gi"}} | ||
env: | ||
- name: WEBHOOK_URL | ||
value: http://loomio:3000/email_processor/ | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: loomio-mailin | ||
spec: | ||
ports: | ||
- name: '25' | ||
port: 25 | ||
selector: | ||
app: loomio-mailin | ||
{{ if .Values.enableLoadBalancer }} | ||
type: LoadBalancer | ||
{{ if .Values.loadBalancerIP }} | ||
loadBalancerIP: {{ .Values.loadBalancerIP | quote }} | ||
{{ end }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: loomio | ||
spec: | ||
ports: | ||
- name: '3000' | ||
port: 3000 | ||
selector: | ||
app: loomio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CLOUDSDK_CORE_PROJECT=midbarrn | ||
CLOUDSDK_CONTAINER_CLUSTER=midbarrn | ||
CLOUDSDK_COMPUTE_ZONE=us-central1-a | ||
K8S_NAMESPACE=loomio | ||
K8S_HELM_RELEASE_NAME=loomio | ||
K8S_ENVIRONMENT_NAME=loomio | ||
K8S_ENVIRONMENT_CONTEXT=gke_midbarrn_us-central1-a_midbarrn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
loomio: | ||
enabled: true | ||
# initializeDb: true | ||
enableLoadBalancer: true | ||
# gcloud compute addresses create loomio-smtp --region=us-central1 | ||
# gcloud compute addresses describe loomio-smtp --region=us-central1 | grep ^address: | ||
loadBalancerIP: "35.193.122.48" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters