diff options
| author | Max Resnick <max@ofmax.li> | 2020-01-01 11:08:33 -0800 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2020-01-01 11:08:33 -0800 |
| commit | 584857f515ab6fe30530d25483869ed517e9575d (patch) | |
| tree | a8da4270005b51100d795c58b9ae24f5fc6d0219 /grumpy | |
| parent | 479a617193774e2fe88279caa34ae3ff56a35fba (diff) | |
| download | grumpy-charts-584857f515ab6fe30530d25483869ed517e9575d.tar.gz | |
add cgit chart
Diffstat (limited to '')
| -rw-r--r-- | grumpy/cgit/.helmignore | 22 | ||||
| -rw-r--r-- | grumpy/cgit/Chart.yaml | 5 | ||||
| -rw-r--r-- | grumpy/cgit/templates/NOTES.txt | 21 | ||||
| -rw-r--r-- | grumpy/cgit/templates/_helpers.tpl | 56 | ||||
| -rw-r--r-- | grumpy/cgit/templates/deployment.yaml | 66 | ||||
| -rw-r--r-- | grumpy/cgit/templates/ingress.yaml | 37 | ||||
| -rw-r--r-- | grumpy/cgit/templates/service.yaml | 16 | ||||
| -rw-r--r-- | grumpy/cgit/templates/serviceaccount.yaml | 8 | ||||
| -rw-r--r-- | grumpy/cgit/templates/tests/test-connection.yaml | 15 | ||||
| -rw-r--r-- | grumpy/cgit/values.yaml | 51 |
10 files changed, 297 insertions, 0 deletions
diff --git a/grumpy/cgit/.helmignore b/grumpy/cgit/.helmignore new file mode 100644 index 0000000..50af031 --- /dev/null +++ b/grumpy/cgit/.helmignore @@ -0,0 +1,22 @@ +# 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 +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/grumpy/cgit/Chart.yaml b/grumpy/cgit/Chart.yaml new file mode 100644 index 0000000..b3b91d6 --- /dev/null +++ b/grumpy/cgit/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +appVersion: "1.0" +description: A Helm chart for Kubernetes +name: cgit +version: 0.1.0 diff --git a/grumpy/cgit/templates/NOTES.txt b/grumpy/cgit/templates/NOTES.txt new file mode 100644 index 0000000..569c2b8 --- /dev/null +++ b/grumpy/cgit/templates/NOTES.txt @@ -0,0 +1,21 @@ +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 }}{{ . }} + {{- 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 "cgit.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 "cgit.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "cgit.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') + 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 "cgit.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 port-forward $POD_NAME 8080:80 +{{- end }} diff --git a/grumpy/cgit/templates/_helpers.tpl b/grumpy/cgit/templates/_helpers.tpl new file mode 100644 index 0000000..52128b4 --- /dev/null +++ b/grumpy/cgit/templates/_helpers.tpl @@ -0,0 +1,56 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "cgit.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 "cgit.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 "cgit.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Common labels +*/}} +{{- define "cgit.labels" -}} +app.kubernetes.io/name: {{ include "cgit.name" . }} +helm.sh/chart: {{ include "cgit.chart" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end -}} + +{{/* +Create the name of the service account to use +*/}} +{{- define "cgit.serviceAccountName" -}} +{{- if .Values.serviceAccount.create -}} + {{ default (include "cgit.fullname" .) .Values.serviceAccount.name }} +{{- else -}} + {{ default "default" .Values.serviceAccount.name }} +{{- end -}} +{{- end -}} diff --git a/grumpy/cgit/templates/deployment.yaml b/grumpy/cgit/templates/deployment.yaml new file mode 100644 index 0000000..7da67ab --- /dev/null +++ b/grumpy/cgit/templates/deployment.yaml @@ -0,0 +1,66 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "cgit.fullname" . }} + labels: +{{ include "cgit.labels" . | indent 4 }} +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app.kubernetes.io/name: {{ include "cgit.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + template: + metadata: + labels: + app.kubernetes.io/name: {{ include "cgit.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ template "cgit.serviceAccountName" . }} + containers: + - name: {{ .Chart.Name }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: + - name: CGIT_HOSTNAME + value: "{{ (index .Values.ingress.hosts 0).host }}" + - name: CGIT_PORT + value: "8080" + volumeMounts: + - mountPath: /var/lib/git + name: gitolite-storage + readOnly: false + ports: + - name: http + containerPort: 8080 + protocol: TCP + #livenessProbe: + # httpGet: + # path: / + # port: http + #readinessProbe: + # httpGet: + # path: / + # port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + volumes: + - name: gitolite-storage + persistentVolumeClaim: + claimName: gitolite-storage + {{- 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/grumpy/cgit/templates/ingress.yaml b/grumpy/cgit/templates/ingress.yaml new file mode 100644 index 0000000..73aa44b --- /dev/null +++ b/grumpy/cgit/templates/ingress.yaml @@ -0,0 +1,37 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "cgit.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +apiVersion: extensions/v1beta1 +kind: Ingress +metadata: + name: {{ $fullName }} + labels: +{{ include "cgit.labels" . | indent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: +{{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} +{{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ . }} + backend: + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} +{{- end }} diff --git a/grumpy/cgit/templates/service.yaml b/grumpy/cgit/templates/service.yaml new file mode 100644 index 0000000..cb9361b --- /dev/null +++ b/grumpy/cgit/templates/service.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "cgit.fullname" . }} + labels: +{{ include "cgit.labels" . | indent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + app.kubernetes.io/name: {{ include "cgit.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} diff --git a/grumpy/cgit/templates/serviceaccount.yaml b/grumpy/cgit/templates/serviceaccount.yaml new file mode 100644 index 0000000..9b6aa29 --- /dev/null +++ b/grumpy/cgit/templates/serviceaccount.yaml @@ -0,0 +1,8 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ template "cgit.serviceAccountName" . }} + labels: +{{ include "cgit.labels" . | indent 4 }} +{{- end -}} diff --git a/grumpy/cgit/templates/tests/test-connection.yaml b/grumpy/cgit/templates/tests/test-connection.yaml new file mode 100644 index 0000000..a1a9905 --- /dev/null +++ b/grumpy/cgit/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "cgit.fullname" . }}-test-connection" + labels: +{{ include "cgit.labels" . | indent 4 }} + annotations: + "helm.sh/hook": test-success +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "cgit.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/grumpy/cgit/values.yaml b/grumpy/cgit/values.yaml new file mode 100644 index 0000000..0f8e3e2 --- /dev/null +++ b/grumpy/cgit/values.yaml @@ -0,0 +1,51 @@ +# Default values for static-files. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +imagePullSecrets: + - name: gitlabsec +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: false + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: + +service: + type: ClusterIP + port: 8080 + +ingress: + enabled: true + annotations: + kubernetes.io/ingress.class: traefik + certmanager.k8s.io/cluseterissuer: "letsencrypt-prod" + ingress.kubernetes.io/ssl-redirect: "true" + traefik.ingress.kubernetes.io/frontend-entry-points: http,https + traefik.ingress.kubernetes.io/redirect-entry-point: https + traefik.ingress.kubernetes.io/redirect-permanent: "true" + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + +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 + +nodeSelector: {} + +tolerations: [] + +affinity: {} |