From 3cfb4bbaf260fbbe9d18aa3d98513144629d3cec Mon Sep 17 00:00:00 2001 From: 030 Date: Fri, 23 Dec 2022 18:49:56 +0100 Subject: [PATCH] feat: [#20] Add Helm package. --- .github/workflows/yamllint.yml | 4 +- configs/.yamllint.yaml | 1 + deployments/helm/.helmignore | 23 +++++ deployments/helm/Chart.yaml | 24 +++++ deployments/helm/templates/NOTES.txt | 22 +++++ deployments/helm/templates/_helpers.tpl | 62 ++++++++++++ deployments/helm/templates/configmap.yaml | 41 ++++++++ deployments/helm/templates/hpa.yaml | 50 ++++++++++ deployments/helm/templates/ingress.yaml | 24 +++++ .../helm/templates/persistentvolume.yaml | 13 +++ .../helm/templates/persistentvolumeclaim.yaml | 13 +++ deployments/helm/templates/secret.yaml | 10 ++ deployments/helm/templates/service.yaml | 27 ++++++ deployments/helm/templates/statefulset.yaml | 71 ++++++++++++++ deployments/helm/values.yaml | 91 ++++++++++++++++++ docs/CHANGELOG.md | 10 +- index.yaml | 14 +++ yaam-0.1.0.tgz | Bin 0 -> 4164 bytes 18 files changed, 495 insertions(+), 5 deletions(-) create mode 100644 deployments/helm/.helmignore create mode 100644 deployments/helm/Chart.yaml create mode 100644 deployments/helm/templates/NOTES.txt create mode 100644 deployments/helm/templates/_helpers.tpl create mode 100644 deployments/helm/templates/configmap.yaml create mode 100644 deployments/helm/templates/hpa.yaml create mode 100644 deployments/helm/templates/ingress.yaml create mode 100644 deployments/helm/templates/persistentvolume.yaml create mode 100644 deployments/helm/templates/persistentvolumeclaim.yaml create mode 100644 deployments/helm/templates/secret.yaml create mode 100644 deployments/helm/templates/service.yaml create mode 100644 deployments/helm/templates/statefulset.yaml create mode 100644 deployments/helm/values.yaml create mode 100644 index.yaml create mode 100644 yaam-0.1.0.tgz diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index ee4e595..01aa924 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -6,11 +6,9 @@ jobs: runs-on: ubuntu-latest container: image: pipelinecomponents/yamllint:0.22.0 - env: - YAMLLINT_CONFIG_FILE: /code/configs/.yamllint.yaml options: --cpus 1 steps: - name: Checkout code uses: actions/checkout@v2 - name: run yamllint - run: yamllint . + run: yamllint -c configs/.yamllint.yaml . diff --git a/configs/.yamllint.yaml b/configs/.yamllint.yaml index 807204c..2c44d8f 100644 --- a/configs/.yamllint.yaml +++ b/configs/.yamllint.yaml @@ -2,4 +2,5 @@ extends: default ignore: | + deployments/helm/ test/npm/demo/node_modules/ diff --git a/deployments/helm/.helmignore b/deployments/helm/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/deployments/helm/.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/deployments/helm/Chart.yaml b/deployments/helm/Chart.yaml new file mode 100644 index 0000000..cd54144 --- /dev/null +++ b/deployments/helm/Chart.yaml @@ -0,0 +1,24 @@ +apiVersion: v2 +name: yaam +description: A Helm chart for Kubernetes + +# 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.1.0 + +# 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: "v0.5.3" diff --git a/deployments/helm/templates/NOTES.txt b/deployments/helm/templates/NOTES.txt new file mode 100644 index 0000000..128f772 --- /dev/null +++ b/deployments/helm/templates/NOTES.txt @@ -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 "yaam.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 "yaam.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "yaam.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 "yaam.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 }} diff --git a/deployments/helm/templates/_helpers.tpl b/deployments/helm/templates/_helpers.tpl new file mode 100644 index 0000000..68e4226 --- /dev/null +++ b/deployments/helm/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "yaam.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 "yaam.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 "yaam.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "yaam.labels" -}} +helm.sh/chart: {{ include "yaam.chart" . }} +{{ include "yaam.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "yaam.selectorLabels" -}} +app.kubernetes.io/name: {{ include "yaam.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "yaam.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "yaam.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/deployments/helm/templates/configmap.yaml b/deployments/helm/templates/configmap.yaml new file mode 100644 index 0000000..f23e212 --- /dev/null +++ b/deployments/helm/templates/configmap.yaml @@ -0,0 +1,41 @@ +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: conf +data: + config.yml: |- + --- + caches: + apt: + 3rdparty-ubuntu-nl-archive: + url: http://nl.archive.ubuntu.com/ubuntu/ + maven: + 3rdparty-maven: + url: https://repo.maven.apache.org/maven2/ + 3rdparty-maven-gradle-plugins: + url: https://plugins.gradle.org/m2/ + 3rdparty-maven-spring: + url: https://repo.spring.io/release/ + other-nexus-repo-releases: + url: https://some-nexus/repository/some-repo/ + user: some-user + pass: some-pass + npm: + 3rdparty-npm: + url: https://registry.npmjs.org/ + groups: + maven: + hello: + - maven/releases + - maven/3rdparty-maven + - maven/3rdparty-maven-gradle-plugins + - maven/3rdparty-maven-spring + - maven/other-nexus-repo-releases + publications: + generic: + - something + maven: + - releases + npm: + - 3rdparty-npm diff --git a/deployments/helm/templates/hpa.yaml b/deployments/helm/templates/hpa.yaml new file mode 100644 index 0000000..63cf7f3 --- /dev/null +++ b/deployments/helm/templates/hpa.yaml @@ -0,0 +1,50 @@ +{{- if .Values.autoscaling.enabled }} +# apiVersion: autoscaling/v2beta1 +# kind: HorizontalPodAutoscaler +# metadata: +# name: {{ include "yaam.fullname" . }} +# labels: +# {{- include "yaam.labels" . | nindent 4 }} +# spec: +# scaleTargetRef: +# apiVersion: apps/v1 +# kind: Deployment +# name: {{ include "yaam.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 }} +--- +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: yaam +spec: + behavior: + scaleDown: + stabilizationWindowSeconds: 30 + maxReplicas: 10 + metrics: + - resource: + name: cpu + target: + averageUtilization: 90 + type: Utilization + type: Resource + minReplicas: 2 + scaleTargetRef: + apiVersion: apps/v1 + kind: StatefulSet + name: yaam +{{- end }} diff --git a/deployments/helm/templates/ingress.yaml b/deployments/helm/templates/ingress.yaml new file mode 100644 index 0000000..2ad5358 --- /dev/null +++ b/deployments/helm/templates/ingress.yaml @@ -0,0 +1,24 @@ +{{- if .Values.ingress.enabled -}} +{{- $svcPort := .Values.service.port -}} +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: yaam +spec: + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - pathType: {{ .pathType }} + path: {{ .path }} + backend: + service: + name: yaam + port: + number: {{ $svcPort }} + {{- end }} + {{- end }} +{{- end }} diff --git a/deployments/helm/templates/persistentvolume.yaml b/deployments/helm/templates/persistentvolume.yaml new file mode 100644 index 0000000..bb03269 --- /dev/null +++ b/deployments/helm/templates/persistentvolume.yaml @@ -0,0 +1,13 @@ +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: repositories +spec: + storageClassName: standard + accessModes: + - ReadWriteOnce + capacity: + storage: 2Gi + hostPath: + path: /opt/yaam/repositories/ diff --git a/deployments/helm/templates/persistentvolumeclaim.yaml b/deployments/helm/templates/persistentvolumeclaim.yaml new file mode 100644 index 0000000..8f89ffb --- /dev/null +++ b/deployments/helm/templates/persistentvolumeclaim.yaml @@ -0,0 +1,13 @@ +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: repositories +spec: + volumeName: repositories + storageClassName: standard + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi diff --git a/deployments/helm/templates/secret.yaml b/deployments/helm/templates/secret.yaml new file mode 100644 index 0000000..67a2878 --- /dev/null +++ b/deployments/helm/templates/secret.yaml @@ -0,0 +1,10 @@ +{{- if .Values.secret.enabled }} +--- +apiVersion: v1 +data: + user: {{ .Values.secret.user }} + pass: {{ .Values.secret.pass }} +kind: Secret +metadata: + name: creds +{{- end }} diff --git a/deployments/helm/templates/service.yaml b/deployments/helm/templates/service.yaml new file mode 100644 index 0000000..b067f12 --- /dev/null +++ b/deployments/helm/templates/service.yaml @@ -0,0 +1,27 @@ +# --- +# apiVersion: v1 +# kind: Service +# metadata: +# name: { { include "yaam.fullname" . } } +# labels: { { - include "yaam.labels" . | nindent 4 } } +# spec: +# type: { { .Values.service.type } } +# ports: +# - port: { { .Values.service.port } } +# targetPort: http +# protocol: TCP +# name: http +# selector: { { - include "yaam.selectorLabels" . | nindent 4 } } +--- +apiVersion: v1 +kind: Service +metadata: + name: yaam + labels: + app: yaam +spec: + ports: + - port: {{ .Values.service.port }} + name: yaam + selector: + app: yaam diff --git a/deployments/helm/templates/statefulset.yaml b/deployments/helm/templates/statefulset.yaml new file mode 100644 index 0000000..9f62a4b --- /dev/null +++ b/deployments/helm/templates/statefulset.yaml @@ -0,0 +1,71 @@ +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: yaam + labels: + app: yaam +spec: + serviceName: yaam + selector: + matchLabels: + app: yaam + replicas: 2 + template: + metadata: + labels: + app: yaam + spec: + containers: + - name: yaam + env: + - name: YAAM_LOG_LEVEL + value: info + - name: YAAM_HOST + value: yaam.some-domain + - name: YAAM_USER + valueFrom: + secretKeyRef: + name: creds + key: user + - name: YAAM_PASS + valueFrom: + secretKeyRef: + name: creds + key: pass + image: utrecht/yaam:v0.5.3 + livenessProbe: + httpGet: + path: /status + port: 25213 + readinessProbe: + httpGet: + path: /status + port: 25213 + resources: + limits: + cpu: 480m + memory: 30Mi + requests: + cpu: 96m + memory: 5Mi + ports: + - containerPort: 25213 + name: yaam + volumeMounts: + - name: conf + mountPath: /opt/yaam/.yaam + - name: repositories + mountPath: /opt/yaam/.yaam/repositories + - mountPath: /opt/yaam/.yaam/logs + name: logs + volumes: + - name: conf + configMap: + name: conf + - name: repositories + persistentVolumeClaim: + claimName: repositories + - name: logs + emptyDir: + sizeLimit: 50Mi diff --git a/deployments/helm/values.yaml b/deployments/helm/values.yaml new file mode 100644 index 0000000..edb3ca2 --- /dev/null +++ b/deployments/helm/values.yaml @@ -0,0 +1,91 @@ +# Default values for yaam. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: nginx + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: '' + +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: 25213 + +ingress: + enabled: true + className: '' + annotations: + {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: yaam.some-domain + paths: + - path: / + pathType: Prefix + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +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: {} + +secret: + enabled: true + user: aGVsbG8= + pass: d29ybGQ= diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 60ecae9..9eda42a 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,11 +2,16 @@ ## [Unreleased] + +## [v0.6.0] - 2022-12-23 +### Feat +- [[#20](https://github.com/030/yaam/issues/20)] Helm package. + + ## [v0.5.3] - 2022-11-27 ### Build - **auto-updater:** Update schedule. -- **deps:** Update versions. @@ -71,7 +76,8 @@ ## v0.2.1 - 2022-08-23 -[Unreleased]: https://github.com/030/yaam/compare/v0.5.3...HEAD +[Unreleased]: https://github.com/030/yaam/compare/v0.6.0...HEAD +[v0.6.0]: https://github.com/030/yaam/compare/v0.5.3...v0.6.0 [v0.5.3]: https://github.com/030/yaam/compare/v0.5.2...v0.5.3 [v0.5.2]: https://github.com/030/yaam/compare/v0.5.1...v0.5.2 [v0.5.1]: https://github.com/030/yaam/compare/v0.5.0...v0.5.1 diff --git a/index.yaml b/index.yaml new file mode 100644 index 0000000..f93b6c7 --- /dev/null +++ b/index.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +entries: + yaam: + - apiVersion: v2 + appVersion: v0.5.3 + created: "2022-12-26T11:20:42.139130065+01:00" + description: A Helm chart for Kubernetes + digest: d75a3e8c7d2ce225f44d6750f98506c067f4af624fbaa9e51c63d2b231d7a359 + name: yaam + type: application + urls: + - https://030.github.io/yaam/yaam-0.1.0.tgz + version: 0.1.0 +generated: "2022-12-26T11:20:42.13798144+01:00" diff --git a/yaam-0.1.0.tgz b/yaam-0.1.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..18a85853dcd6d69b3202b5f57bddd9101d021b61 GIT binary patch literal 4164 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 O0RR6HYw{rgS^xl-l_(?t literal 0 HcmV?d00001