diff --git a/charts/svix-server/.helmignore b/charts/svix-server/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/charts/svix-server/.helmignore @@ -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/ diff --git a/charts/svix-server/Chart.yaml b/charts/svix-server/Chart.yaml new file mode 100644 index 0000000..b045c2a --- /dev/null +++ b/charts/svix-server/Chart.yaml @@ -0,0 +1,27 @@ +apiVersion: v2 +name: svix +description: Helm chart for Svix +maintainers: + - name: Holaplex Engineering + email: engineering@holaplex.com + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 0.0.1 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +# It is recommended to use it with quotes. +appVersion: "0.0.1" diff --git a/charts/svix-server/templates/NOTES.txt b/charts/svix-server/templates/NOTES.txt new file mode 100644 index 0000000..e69de29 diff --git a/charts/svix-server/templates/_helpers.tpl b/charts/svix-server/templates/_helpers.tpl new file mode 100644 index 0000000..4f2b16e --- /dev/null +++ b/charts/svix-server/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "svix.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 "svix.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 "svix.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "svix.labels" -}} +helm.sh/chart: {{ include "svix.chart" . }} +{{ include "svix.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "svix.selectorLabels" -}} +app.kubernetes.io/name: {{ include "svix.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "svix.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "svix.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/charts/svix-server/templates/deployment.yaml b/charts/svix-server/templates/deployment.yaml new file mode 100644 index 0000000..62cd9db --- /dev/null +++ b/charts/svix-server/templates/deployment.yaml @@ -0,0 +1,66 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "svix.fullname" . }} + labels: + {{- include "svix.labels" . | nindent 4 }} +spec: + {{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} + {{- end }} + selector: + matchLabels: + {{- include "svix.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "svix.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "svix.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + envFrom: + - configMapRef: + name: {{ include "svix.fullname" . }} + - secretRef: + name: {{ include "svix.fullname" . }} + ports: + - name: http + containerPort: {{ .Values.service.port }} + protocol: TCP + livenessProbe: + httpGet: + path: /api/v1/health/ + port: http + readinessProbe: + httpGet: + path: /api/v1/health/ + port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/charts/svix-server/templates/environment.yaml b/charts/svix-server/templates/environment.yaml new file mode 100644 index 0000000..9fc46f2 --- /dev/null +++ b/charts/svix-server/templates/environment.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "svix.fullname" . }} +data: + {{- with .Values.environment }} + SVIX_QUEUE_TYPE: {{ .queueType | default "memory" | quote }} + RUST_LOG: {{ .logLevel | default "info" | quote }} + SVIX_LISTEN_ADDRESS: {{ print .listenAddress ":" $.Values.service.port }} + SVIX_REDIS_DSN: {{ .redisDsn }} + WAIT_FOR: {{ .waitForServices | default "true" | quote }} + {{- end }} diff --git a/charts/svix-server/templates/hpa.yaml b/charts/svix-server/templates/hpa.yaml new file mode 100644 index 0000000..e27ab44 --- /dev/null +++ b/charts/svix-server/templates/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "svix.fullname" . }} + labels: + {{- include "svix.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "svix.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/charts/svix-server/templates/secrets.yaml b/charts/svix-server/templates/secrets.yaml new file mode 100644 index 0000000..dc6a858 --- /dev/null +++ b/charts/svix-server/templates/secrets.yaml @@ -0,0 +1,14 @@ +{{- with .Values.secrets }} +{{- if .enabled }} +apiVersion: v1 +kind: Secret +metadata: + name: {{ include "svix.fullname" $ }} + annotations: + "helm.sh/hook": pre-install +type: Opaque +data: + SVIX_JWT_SECRET: {{ .entries.jwtSecret | b64enc }} + SVIX_DB_DSN: {{ .entries.dsn | b64enc }} +{{- end }} +{{- end }} diff --git a/charts/svix-server/templates/service.yaml b/charts/svix-server/templates/service.yaml new file mode 100644 index 0000000..d808725 --- /dev/null +++ b/charts/svix-server/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "svix.fullname" . }} + labels: + {{- include "svix.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "svix.selectorLabels" . | nindent 4 }} diff --git a/charts/svix-server/templates/serviceaccount.yaml b/charts/svix-server/templates/serviceaccount.yaml new file mode 100644 index 0000000..14dc313 --- /dev/null +++ b/charts/svix-server/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "svix.serviceAccountName" . }} + labels: + {{- include "svix.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/charts/svix-server/values.yaml b/charts/svix-server/values.yaml new file mode 100644 index 0000000..47874d5 --- /dev/null +++ b/charts/svix-server/values.yaml @@ -0,0 +1,80 @@ +# Default values for svix-server. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: svix/svix-server + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "latest" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 80 + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {} + +secrets: + enabled: true + entries: + jwtSecret: "supersecret" + dsn: "postgresql://svix:svix@svix-db-postgresql:5432/svix" + +environment: + logLevel: "info" + queueType: "memory" + waitForServices: true + redisDsn: "redis://redis:6379" + # .Values.service.port will be used for listenPort + listenAddress: "0.0.0.0"