Skip to content

Commit

Permalink
Merge pull request #1 from scientist-softserv/setup-helm
Browse files Browse the repository at this point in the history
Setup helm deployment
  • Loading branch information
bkiahstroud authored Jun 5, 2024
2 parents 34bb5ea + e702c2f commit 993d24b
Show file tree
Hide file tree
Showing 18 changed files with 795 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Deploy"
run-name: Deploy (${{ github.ref_name }} -> ${{ inputs.environment }}) by @${{ github.actor }}
on:
workflow_dispatch:
inputs:
environment:
description: 'Deploy to Environment'
required: true
default: 'production'
type: choice
options:
- production
debug_enabled:
type: boolean
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false

jobs:
deploy:
uses: scientist-softserv/actions/.github/workflows/[email protected]
secrets: inherit
21 changes: 21 additions & 0 deletions bin/helm_deploy
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/sh

release_name="${1:-princeton-manifold-production}"
namespace="${2:-princeton-manifold-production}"
tag=$(git rev-parse --short=8 HEAD)

DEPLOY_TAG="${DEPLOY_TAG:-$tag}"
echo $DEPLOY_TAG

helm repo update

helm upgrade \
--install \
--atomic \
--timeout 15m0s \
--set image.tag="$DEPLOY_TAG" \
$HELM_EXTRA_ARGS \
--namespace="$namespace" \
--create-namespace \
"$release_name" \
./chart/princeton-manifold
23 changes: 23 additions & 0 deletions chart/princeton-manifold/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
9 changes: 9 additions & 0 deletions chart/princeton-manifold/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
dependencies:
- name: elasticsearch
repository: oci://registry-1.docker.io/bitnamicharts
version: 19.21.2
- name: redis
repository: oci://registry-1.docker.io/bitnamicharts
version: 17.16.0
digest: sha256:576393d532e89b60cdc623f355275c215d0aed5a9026b2f66aefe66f1347682d
generated: "2024-06-03T10:18:45.330406-07:00"
13 changes: 13 additions & 0 deletions chart/princeton-manifold/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: v2
version: 0.1.0
type: application
name: princeton-manifold
description: An implementation of the Manifold application for Princeton University
appVersion: "v8.1.1"
dependencies:
- name: elasticsearch
repository: oci://registry-1.docker.io/bitnamicharts
version: 19.21.2
- name: redis
repository: oci://registry-1.docker.io/bitnamicharts
version: 17.16.0
22 changes: 22 additions & 0 deletions chart/princeton-manifold/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
1. Get the application URL by running these commands:
{{- if .Values.ingress.enabled }}
{{- range $host := .Values.ingress.hosts }}
{{- range .paths }}
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }}
{{- end }}
{{- end }}
{{- else if contains "NodePort" .Values.service.type }}
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "princeton-manifold.fullname" . }})
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
echo http://$NODE_IP:$NODE_PORT
{{- else if contains "LoadBalancer" .Values.service.type }}
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "princeton-manifold.fullname" . }}'
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "princeton-manifold.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}")
echo http://$SERVICE_IP:{{ .Values.service.port }}
{{- else if contains "ClusterIP" .Values.service.type }}
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "princeton-manifold.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}")
echo "Visit http://127.0.0.1:8080 to use your application"
kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT
{{- end }}
78 changes: 78 additions & 0 deletions chart/princeton-manifold/templates/_helpers.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{{/*
Expand the name of the chart.
*/}}
{{- define "princeton-manifold.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
{{- end }}

{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
If release name contains chart name it will be used as a full name.
*/}}
{{- define "princeton-manifold.fullname" -}}
{{- if .Values.fullnameOverride }}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- $name := default .Chart.Name .Values.nameOverride }}
{{- if contains $name .Release.Name }}
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
{{- end }}
{{- end }}
{{- end }}

{{/*
Create chart name and version as used by the chart label.
*/}}
{{- define "princeton-manifold.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
{{- end }}

{{/*
Common labels
*/}}
{{- define "princeton-manifold.labels" -}}
helm.sh/chart: {{ include "princeton-manifold.chart" . }}
{{ include "princeton-manifold.selectorLabels" . }}
{{- if .Chart.AppVersion }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end }}

{{/*
Selector labels
*/}}
{{- define "princeton-manifold.selectorLabels" -}}
app.kubernetes.io/name: {{ include "princeton-manifold.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end }}

{{/*
Create the name of the service account to use
*/}}
{{- define "princeton-manifold.serviceAccountName" -}}
{{- if .Values.serviceAccount.create }}
{{- default (include "princeton-manifold.fullname" .) .Values.serviceAccount.name }}
{{- else }}
{{- default "default" .Values.serviceAccount.name }}
{{- end }}
{{- end }}

{{/*
Create default fully qualified service names.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
*/}}
{{- define "princeton-manifold.redis.fullname" -}}
{{- printf "%s-%s" .Release.Name "redis" | trunc 63 | trimSuffix "-" -}}
{{- end -}}

{{- define "princeton-manifold.redis.host" -}}
{{- printf "%s-master" (include "princeton-manifold.redis.fullname" .) -}}
{{- end -}}

{{- define "princeton-manifold.redis.url" -}}
{{- printf "redis://:%s@%s:%s" .Values.redis.auth.password (include "princeton-manifold.redis.host" .) "6379/0" -}}
{{- end -}}
30 changes: 30 additions & 0 deletions chart/princeton-manifold/templates/configmap-env.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "princeton-manifold.fullname" . }}-env
labels:
app.kubernetes.io/name: {{ include "princeton-manifold.name" . }}
helm.sh/chart: {{ include "princeton-manifold.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
data:
API_CABLE_SOCKET=/manifold_sockets/manifold-cable
API_PORT=3020
API_SOCKET=/manifold_sockets/manifold-api
CLIENT_BROWSER_API_CABLE_URL=https://princeton-manifold-production.softserv.cloud/cable
CLIENT_BROWSER_API_URL=https://princeton-manifold-production.softserv.cloud
CLIENT_SERVER_API_URL=http://princeton-manifold-production-api:3020
CLIENT_SERVER_PROXIES=false
CLIENT_SERVER_SOCKET=/manifold_sockets/manifold-client
DOMAIN=princeton-manifold-production.softserv.cloud
ELASTICSEARCH_URL=http://princeton-manifold-production-elasticsearch:9200
NODE_ENV=production
RAILS_DB_HOST={{ .Values.externalPostgresql.host }}
RAILS_DB_NAME={{ .Values.externalPostgresql.database }}
RAILS_DB_PASS={{ .Values.externalPostgresql.password }}
RAILS_DB_PORT=5432
RAILS_DB_USER={{ .Values.externalPostgresql.username }}
RAILS_ENV=production
RAILS_REDIS_URL={{ template "princeton-manifold.redis.url" . }}
RAILS_SECRET_KEY={{ .Values.env.rails_secret_key }}
SSL_ENABLED=true
85 changes: 85 additions & 0 deletions chart/princeton-manifold/templates/deployment-api.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "princeton-manifold.fullname" . }}-api
labels:
{{- include "princeton-manifold.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
app.kubernetes.io/name: {{ include "princeton-manifold.name" . }}-api
app.kubernetes.io/instance: {{ .Release.Name }}
template:
metadata:
{{- with .Values.podAnnotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
labels:
app.kubernetes.io/name: {{ include "princeton-manifold.name" . }}-api
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ include "princeton-manifold.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: {{ .Chart.Name }}-api-rails
command:
- bin/puma
- -C
- config/puma.rb
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.api.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
envFrom:
- configMapRef:
name: {{ include "princeton-manifold.fullname" . }}-env
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.volumeMounts }}
volumeMounts:
{{- toYaml . | nindent 12 }}
{{- end }}
- name: {{ .Chart.Name }}-api-sidekiq
command:
- bin/sidekiq
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.api.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
envFrom:
- configMapRef:
name: {{ include "princeton-manifold.fullname" . }}-env
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.volumeMounts }}
volumeMounts:
{{- toYaml . | nindent 12 }}
{{- end }}
- name: {{ .Chart.Name }}-api-clockwork
command:
- bin/zhong
- zhong.rb
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.api.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
envFrom:
- configMapRef:
name: {{ include "princeton-manifold.fullname" . }}-env
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.volumeMounts }}
volumeMounts:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.volumes }}
volumes:
{{- toYaml . | nindent 8 }}
{{- end }}
49 changes: 49 additions & 0 deletions chart/princeton-manifold/templates/deployment-client.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "princeton-manifold.fullname" . }}-client
labels:
{{- include "princeton-manifold.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
app.kubernetes.io/name: {{ include "princeton-manifold.name" . }}-client
app.kubernetes.io/instance: {{ .Release.Name }}
template:
metadata:
{{- with .Values.podAnnotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
labels:
app.kubernetes.io/name: {{ include "princeton-manifold.name" . }}-client
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ include "princeton-manifold.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: {{ .Chart.Name }}-client
command: ["yarn", "run", "build", "&&", "yarn", "run", "start"]
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.client.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
envFrom:
- configMapRef:
name: {{ include "princeton-manifold.fullname" . }}-env
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.volumeMounts }}
volumeMounts:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.volumes }}
volumes:
{{- toYaml . | nindent 8 }}
{{- end }}
32 changes: 32 additions & 0 deletions chart/princeton-manifold/templates/hpa.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{{- if .Values.autoscaling.enabled }}
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "princeton-manifold.fullname" . }}
labels:
{{- include "princeton-manifold.labels" . | nindent 4 }}
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: {{ include "princeton-manifold.fullname" . }}
minReplicas: {{ .Values.autoscaling.minReplicas }}
maxReplicas: {{ .Values.autoscaling.maxReplicas }}
metrics:
{{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
{{- end }}
{{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
- type: Resource
resource:
name: memory
target:
type: Utilization
averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
{{- end }}
{{- end }}
Loading

0 comments on commit 993d24b

Please sign in to comment.