Skip to content

Commit

Permalink
add new chart healthchecks (#44)
Browse files Browse the repository at this point in the history
* add new chart healthchecks

* fix lint

* fix lint

* fix lint

* f
  • Loading branch information
LeoQuote authored Feb 1, 2023
1 parent 066b5b9 commit 7e7070b
Show file tree
Hide file tree
Showing 14 changed files with 716 additions and 0 deletions.
27 changes: 27 additions & 0 deletions charts/healthchecks/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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/
*values-override*
*healthchecks-secret*
*fleet*
ci
6 changes: 6 additions & 0 deletions charts/healthchecks/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dependencies:
- name: postgresql
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
version: 10.14.3
digest: sha256:e80104c17223a610ecc6321428640116bf1489a787db881afeb8080ad4b5f91d
generated: "2023-01-30T18:21:38.917546622+08:00"
31 changes: 31 additions & 0 deletions charts/healthchecks/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
version: 1.0.6
apiVersion: v2
name: healthchecks
description: A Helm chart for Kubernetes
maintainers:
- email: rakshit@improwised.com
name: rakshit
# 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/)

# 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.
appVersion: 1.16.0
sources:
- https://github.com/healthchecks/healthchecks
dependencies:
- name: postgresql
version: 10.14.3
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
condition: postgresql.enabled,global.postgresql.enabled
105 changes: 105 additions & 0 deletions charts/healthchecks/ci/override-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# Default values for healthchecks.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

image:
repository: linuxserver/healthchecks
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "amd64-version-v1.16.0"

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

# override site root url (SITE_ROOT env) see below for more details
# https://github.com/healthchecks/healthchecks
siterootOverride: ""
# override site name (SITE_NAME env) see below for more details
sitenameOverride: ""

# for postgres password, email host password, superuser email, superuser password
existingSecret: false

# pass more environment variables, more details below
# https://github.com/healthchecks/healthchecks#configuration
# extraenvs:
# EMAIL_USE_TLS: "False"

probs:
livenessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 50

readinessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 50

service:
type: ClusterIP
port: 8000

ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths: []
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local

postgresql:
enabled: false
persistence:
enabled: true
postgresqlDatabase: healthchecks
postgresqlUsername: healthchecks
postgresqlPassword: healthchecks # pragma: allowlist secret
# existingSecret: healthchecks-secret

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

podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000

securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000

nodeSelector: {}

tolerations: []

affinity: {}
21 changes: 21 additions & 0 deletions charts/healthchecks/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
1. Get the application URL by running these commands:
{{- if .Values.ingress.enabled }}
{{- range $host := .Values.ingress.hosts }}
{{- range $.Values.ingress.paths }}
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host }}{{ . }}
{{- 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 "healthchecks.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 "healthchecks.fullname" . }}'
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "healthchecks.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 "healthchecks.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
echo "Visit http://127.0.0.1:8080 to use your application"
kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80
{{- end }}
91 changes: 91 additions & 0 deletions charts/healthchecks/templates/_helpers.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Expand the name of the chart.
*/}}
{{- define "healthchecks.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 "healthchecks.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 "healthchecks.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
{{- end }}

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

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

{{/*
Return the appropriate apiVersion for ingress.
*/}}
{{- define "ingress.apiVersion" -}}
{{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.Version -}}
{{- print "extensions/v1beta1" -}}
{{- else if semverCompare "<1.19-0" .Capabilities.KubeVersion.Version -}}
{{- print "networking.k8s.io/v1beta1" -}}
{{- else -}}
{{- print "networking.k8s.io/v1" -}}
{{- end -}}
{{- end -}}

{{- define "ingress.backend" -}}
{{- $apiVersion := (include "ingress.apiVersion" .context) -}}
{{- if or (eq $apiVersion "extensions/v1beta1") (eq $apiVersion "networking.k8s.io/v1beta1") -}}
serviceName: {{ .serviceName }}
servicePort: {{ .servicePort }}
{{- else -}}
service:
name: {{ .serviceName }}
port:
{{- if typeIs "string" .servicePort }}
name: {{ .servicePort }}
{{- else if or (typeIs "int" .servicePort) (typeIs "float64" .servicePort) }}
number: {{ .servicePort | int }}
{{- end }}
{{- end -}}
{{- end -}}

{{- define "ingress.pathtype" -}}
{{- $apiVersion := (include "ingress.apiVersion" .) -}}
{{- if (eq $apiVersion "networking.k8s.io/v1") -}}
pathType: ImplementationSpecific
{{- end -}}
{{- end -}}


72 changes: 72 additions & 0 deletions charts/healthchecks/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "healthchecks.fullname" . }}
labels:
{{- include "healthchecks.labels" . | nindent 4 }}
data:
{{- if .Values.postgresql.enabled }}
DB: "postgres"
DB_HOST: "{{ .Release.Name }}-postgresql.{{ .Release.Namespace }}.svc.cluster.local"
DB_PORT: {{ default "5432" .Values.postgresql.service.port | quote }}
DB_NAME: {{ default "healthckecks" .Values.postgresql.postgresqlDatabase | quote }}
DB_USER: {{ default "healthckecks" .Values.postgresql.postgresqlUsername | quote }}
{{- end }}
{{- if .Values.siterootOverride }}
SITE_ROOT: {{ .Values.siterootOverride | quote }}
{{- else if .Values.ingress.enabled }}
{{- range $host := .Values.ingress.hosts }}
{{- range .paths }}
SITE_ROOT: "http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ trimSuffix "/" . }}"
{{- end }}
{{- end }}
{{- else }}
SITE_ROOT: "http://localhost:8000"
{{- end }}
{{- if .Values.sitenameOverride }}
SITE_NAME: {{ .Values.sitenameOverride | quote }}
{{- else }}
SITE_NAME: "localhost"
{{- end }}
{{- range $key, $val := .Values.extraConfigs }}
{{ $key }}: {{ $val | quote }}
{{- end }}

---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "healthchecks.fullname" . }}-docker-folder
labels:
{{- include "healthchecks.labels" . | nindent 4 }}
data:
# override healthcheck default uwsgi config
uwsgi.ini: |
[uwsgi]
master
die-on-term
http-socket = :8000
harakiri = 10
post-buffering = 4096
processes = 4
enable-threads
threads = 1
chdir = /opt/healthchecks
module = hc.wsgi:application
thunder-lock
disable-write-exception
# workaround for https://github.com/unbit/uwsgi/issues/2299
max-fd = 10000
hook-pre-app = exec:./manage.py migrate
if-env = HEALTHCHECK_UWSGI_SENDALERTS
attach-daemon = ./manage.py sendalerts
endif =
if-env = HEALTHCHECK_UWSGI_SENDREPORTS
attach-daemon = ./manage.py sendreports --loop
endif =
if-env = HEALTHCHECK_UWSGI_SMTPD
attach-daemon = ./manage.py smtpd
endif =
Loading

0 comments on commit 7e7070b

Please sign in to comment.