From ff5fb746ad042c3b728c694aec07cba21dcb4e54 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 21 May 2021 11:39:37 +0100 Subject: [PATCH] Add 'idrac6' chart (#14) * Add idrac6 chart * Add test values --- charts/idrac6/.helmignore | 23 +++ charts/idrac6/Chart.yaml | 14 ++ charts/idrac6/OWNERS | 4 + charts/idrac6/README.md | 32 ++++ charts/idrac6/ci/test-values.yaml | 5 + charts/idrac6/templates/_helpers.tpl | 32 ++++ charts/idrac6/templates/app-pvc.yaml | 28 ++++ charts/idrac6/templates/deployment.yaml | 135 +++++++++++++++ charts/idrac6/templates/ingress.yaml | 38 +++++ charts/idrac6/templates/screenshots-pvc.yaml | 28 ++++ charts/idrac6/templates/service.yaml | 52 ++++++ charts/idrac6/templates/vmedia-pvc.yaml | 28 ++++ charts/idrac6/values.yaml | 168 +++++++++++++++++++ 13 files changed, 587 insertions(+) create mode 100644 charts/idrac6/.helmignore create mode 100644 charts/idrac6/Chart.yaml create mode 100644 charts/idrac6/OWNERS create mode 100644 charts/idrac6/README.md create mode 100644 charts/idrac6/ci/test-values.yaml create mode 100644 charts/idrac6/templates/_helpers.tpl create mode 100644 charts/idrac6/templates/app-pvc.yaml create mode 100644 charts/idrac6/templates/deployment.yaml create mode 100644 charts/idrac6/templates/ingress.yaml create mode 100644 charts/idrac6/templates/screenshots-pvc.yaml create mode 100644 charts/idrac6/templates/service.yaml create mode 100644 charts/idrac6/templates/vmedia-pvc.yaml create mode 100644 charts/idrac6/values.yaml diff --git a/charts/idrac6/.helmignore b/charts/idrac6/.helmignore new file mode 100644 index 0000000..46fd899 --- /dev/null +++ b/charts/idrac6/.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 +*~ +# Various IDEs +.project +.idea/ +*.tmproj +# OWNERS file for Kubernetes +OWNERS diff --git a/charts/idrac6/Chart.yaml b/charts/idrac6/Chart.yaml new file mode 100644 index 0000000..016d690 --- /dev/null +++ b/charts/idrac6/Chart.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +appVersion: '0.5' +description: iDRAC 6 web interface and VNC proxy +name: idrac6 +version: 0.0.1 +keywords: + - dell + - idrac +home: https://github.com/DomiStyle/docker-idrac6 +sources: + - https://hub.docker.com/r/linuxserver/calibre-web/ +maintainers: + - name: nikdoof + email: andy@tensixtyone.com diff --git a/charts/idrac6/OWNERS b/charts/idrac6/OWNERS new file mode 100644 index 0000000..3c780cd --- /dev/null +++ b/charts/idrac6/OWNERS @@ -0,0 +1,4 @@ +approvers: +- nikdoof +reviewers: +- nikdoof \ No newline at end of file diff --git a/charts/idrac6/README.md b/charts/idrac6/README.md new file mode 100644 index 0000000..2004ca9 --- /dev/null +++ b/charts/idrac6/README.md @@ -0,0 +1,32 @@ +# idrac6 + +This is a helm chart for iDRAC6 Proxy docker image. This Chart is heavily based on the format used by [billimek](https://github.com/billimek/) for his collection of media related [charts](https://github.com/billimek/billimek-charts/). + +## TL;DR; + +```shell +$ helm repo add nikdoof https://nikdoof.github.io/helm-charts/ +$ helm install --set idrac.host=192.168.1.2 --set idrac.user=root --set idrac.password=calvin idrac6 +``` + +## Installing the Chart + +To install the chart with the release name `my-release`: + +```console +helm install --name my-release idrac6 +``` + +## Uninstalling the Chart + +To uninstall/delete the `my-release` deployment: + +```console +helm delete my-release --purge +``` + +The command removes all the Kubernetes components associated with the chart and deletes the release. + +## Configuration + +Read through the [values.yaml](https://github.com/nikdoof/helm-charts/tree/master/charts/idrac6/values.yaml) file. It has several commented out suggested values. diff --git a/charts/idrac6/ci/test-values.yaml b/charts/idrac6/ci/test-values.yaml new file mode 100644 index 0000000..116659b --- /dev/null +++ b/charts/idrac6/ci/test-values.yaml @@ -0,0 +1,5 @@ +--- +idrac: + host: test + user: root + password: calvin diff --git a/charts/idrac6/templates/_helpers.tpl b/charts/idrac6/templates/_helpers.tpl new file mode 100644 index 0000000..5deb4e8 --- /dev/null +++ b/charts/idrac6/templates/_helpers.tpl @@ -0,0 +1,32 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "idrac6.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 "idrac6.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 "idrac6.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} diff --git a/charts/idrac6/templates/app-pvc.yaml b/charts/idrac6/templates/app-pvc.yaml new file mode 100644 index 0000000..19235f2 --- /dev/null +++ b/charts/idrac6/templates/app-pvc.yaml @@ -0,0 +1,28 @@ +{{- if and .Values.persistence.app.enabled (not .Values.persistence.app.existingClaim) }} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ template "idrac6.fullname" . }}-app + {{- if .Values.persistence.app.skipuninstall }} + annotations: + "helm.sh/resource-policy": keep + {{- end }} + labels: + app.kubernetes.io/name: {{ include "idrac6.name" . }} + helm.sh/chart: {{ include "idrac6.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + accessModes: + - {{ .Values.persistence.app.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.app.size | quote }} +{{- if .Values.persistence.app.storageClass }} +{{- if (eq "-" .Values.persistence.app.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.persistence.app.storageClass }}" +{{- end }} +{{- end }} +{{- end -}} diff --git a/charts/idrac6/templates/deployment.yaml b/charts/idrac6/templates/deployment.yaml new file mode 100644 index 0000000..019d9a3 --- /dev/null +++ b/charts/idrac6/templates/deployment.yaml @@ -0,0 +1,135 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "idrac6.fullname" . }} + {{- if .Values.deploymentAnnotations }} + annotations: + {{- range $key, $value := .Values.deploymentAnnotations }} + {{ $key }}: {{ $value | quote }} + {{- end }} + {{- end }} + labels: + app.kubernetes.io/name: {{ include "idrac6.name" . }} + helm.sh/chart: {{ include "idrac6.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + replicas: 1 + revisionHistoryLimit: 3 + strategy: + type: {{ .Values.strategyType }} + selector: + matchLabels: + app.kubernetes.io/name: {{ include "idrac6.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + template: + metadata: + labels: + app.kubernetes.io/name: {{ include "idrac6.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + {{- if .Values.podAnnotations }} + annotations: + {{- range $key, $value := .Values.podAnnotations }} + {{ $key }}: {{ $value | quote }} + {{- end }} + {{- end }} + spec: + containers: + - name: {{ .Chart.Name }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 5800 + protocol: TCP + livenessProbe: + tcpSocket: + port: http + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} + readinessProbe: + tcpSocket: + port: http + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} + env: + - name: TZ + value: "{{ .Values.timezone }}" + - name: USER_ID + value: "{{ .Values.puid }}" + - name: GROUP_ID + value: "{{ .Values.pgid }}" + - name: IDRAC_HOST + value: "{{ .Values.idrac.host }}" + - name: IDRAC_USER + value: "{{ .Values.idrac.user }}" + - name: IDRAC_PASSWORD + value: "{{ .Values.idrac.password }}" + - name: IDRAC_PORT + value: "{{ .Values.idrac.port }}" + - name: IDRAC_KEYCODE_HACK + value: "{{ .Values.idrac.keycode_hack }}" + volumeMounts: + - mountPath: /app + name: app + {{- if .Values.persistence.app.subPath }} + subPath: "{{ .Values.persistence.config.subPath }}" + {{- end }} + - mountPath: /vmedia + name: vmedia + {{- if .Values.persistence.vmedia.subPath }} + subPath: {{ .Values.persistence.vmedia.subPath }} + {{- end }} + - mountPath: /screenshots + name: screenshots + {{- if .Values.persistence.screenshots.subPath }} + subPath: {{ .Values.persistence.screenshots.subPath }} + {{- end }} + {{- range .Values.persistence.extraExistingClaimMounts }} + - name: {{ .name }} + mountPath: {{ .mountPath }} + readOnly: {{ .readOnly }} + {{- end }} + resources: +{{ toYaml .Values.resources | indent 12 }} + volumes: + - name: app + {{- if .Values.persistence.app.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistence.app.existingClaim }}{{ .Values.persistence.app.existingClaim }}{{- else }}{{ template "idrac6.fullname" . }}-app{{- end }} + {{- else }} + emptyDir: {} + {{ end }} + - name: vmedia + {{- if .Values.persistence.vmedia.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistence.vmedia.existingClaim }}{{ .Values.persistence.vmedia.existingClaim }}{{- else }}{{ template "idrac6.fullname" . }}-vmedia{{- end }} + {{- else }} + emptyDir: {} + {{- end }} + - name: screenshots + {{- if .Values.persistence.screenshots.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistence.screenshots.existingClaim }}{{ .Values.persistence.screenshots.existingClaim }}{{- else }}{{ template "idrac6.fullname" . }}-screenshots{{- end }} + {{- else }} + emptyDir: {} + {{- end }} + {{- range .Values.persistence.extraExistingClaimMounts }} + - name: {{ .name }} + persistentVolumeClaim: + claimName: {{ .existingClaim }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: +{{ toYaml . | indent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: +{{ toYaml . | indent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} + {{- end }} diff --git a/charts/idrac6/templates/ingress.yaml b/charts/idrac6/templates/ingress.yaml new file mode 100644 index 0000000..28cf5a1 --- /dev/null +++ b/charts/idrac6/templates/ingress.yaml @@ -0,0 +1,38 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "idrac6.fullname" . -}} +{{- $ingressPath := .Values.ingress.path -}} +apiVersion: extensions/v1beta1 +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + app.kubernetes.io/name: {{ include "idrac6.name" . }} + helm.sh/chart: {{ include "idrac6.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- with .Values.ingress.annotations }} + annotations: +{{ toYaml . | indent 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: {{ . | quote }} + http: + paths: + - path: {{ $ingressPath }} + backend: + serviceName: {{ $fullName }} + servicePort: http + {{- end }} +{{- end }} diff --git a/charts/idrac6/templates/screenshots-pvc.yaml b/charts/idrac6/templates/screenshots-pvc.yaml new file mode 100644 index 0000000..dae5037 --- /dev/null +++ b/charts/idrac6/templates/screenshots-pvc.yaml @@ -0,0 +1,28 @@ +{{- if and .Values.persistence.screenshots.enabled (not .Values.persistence.screenshots.existingClaim) }} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ template "idrac6.fullname" . }}-app + {{- if .Values.persistence.screenshots.skipuninstall }} + annotations: + "helm.sh/resource-policy": keep + {{- end }} + labels: + app.kubernetes.io/name: {{ include "idrac6.name" . }} + helm.sh/chart: {{ include "idrac6.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + accessModes: + - {{ .Values.persistence.screenshots.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.screenshots.size | quote }} +{{- if .Values.persistence.screenshots.storageClass }} +{{- if (eq "-" .Values.persistence.screenshots.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.persistence.screenshots.storageClass }}" +{{- end }} +{{- end }} +{{- end -}} diff --git a/charts/idrac6/templates/service.yaml b/charts/idrac6/templates/service.yaml new file mode 100644 index 0000000..c38c7e0 --- /dev/null +++ b/charts/idrac6/templates/service.yaml @@ -0,0 +1,52 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ template "idrac6.fullname" . }} + labels: + app.kubernetes.io/name: {{ include "idrac6.name" . }} + helm.sh/chart: {{ include "idrac6.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- if .Values.service.labels }} +{{ toYaml .Values.service.labels | indent 4 }} +{{- end }} +{{- with .Values.service.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} +spec: +{{- if (or (eq .Values.service.type "ClusterIP") (empty .Values.service.type)) }} + type: ClusterIP + {{- if .Values.service.clusterIP }} + clusterIP: {{ .Values.service.clusterIP }} + {{end}} +{{- else if eq .Values.service.type "LoadBalancer" }} + type: {{ .Values.service.type }} + {{- if .Values.service.loadBalancerIP }} + loadBalancerIP: {{ .Values.service.loadBalancerIP }} + {{- end }} + {{- if .Values.service.loadBalancerSourceRanges }} + loadBalancerSourceRanges: +{{ toYaml .Values.service.loadBalancerSourceRanges | indent 4 }} + {{- end -}} +{{- else }} + type: {{ .Values.service.type }} +{{- end }} +{{- if .Values.service.externalIPs }} + externalIPs: +{{ toYaml .Values.service.externalIPs | indent 4 }} +{{- end }} + {{- if .Values.service.externalTrafficPolicy }} + externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy }} + {{- end }} + ports: + - name: http + port: {{ .Values.service.port }} + protocol: TCP + targetPort: http +{{ if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePort))) }} + nodePort: {{.Values.service.nodePort}} +{{ end }} + selector: + app.kubernetes.io/name: {{ include "idrac6.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} diff --git a/charts/idrac6/templates/vmedia-pvc.yaml b/charts/idrac6/templates/vmedia-pvc.yaml new file mode 100644 index 0000000..b81224b --- /dev/null +++ b/charts/idrac6/templates/vmedia-pvc.yaml @@ -0,0 +1,28 @@ +{{- if and .Values.persistence.vmedia.enabled (not .Values.persistence.vmedia.existingClaim) }} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ template "idrac6.fullname" . }}-app + {{- if .Values.persistence.vmedia.skipuninstall }} + annotations: + "helm.sh/resource-policy": keep + {{- end }} + labels: + app.kubernetes.io/name: {{ include "idrac6.name" . }} + helm.sh/chart: {{ include "idrac6.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + accessModes: + - {{ .Values.persistence.vmedia.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.vmedia.size | quote }} +{{- if .Values.persistence.vmedia.storageClass }} +{{- if (eq "-" .Values.persistence.vmedia.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.persistence.vmedia.storageClass }}" +{{- end }} +{{- end }} +{{- end -}} diff --git a/charts/idrac6/values.yaml b/charts/idrac6/values.yaml new file mode 100644 index 0000000..f4e89a8 --- /dev/null +++ b/charts/idrac6/values.yaml @@ -0,0 +1,168 @@ +# Default values for calibre-web. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +image: + repository: domistyle/idrac6 + tag: v0.5 + pullPolicy: IfNotPresent + +# upgrade strategy type (e.g. Recreate or RollingUpdate) +strategyType: Recreate + +# Probes configuration +probes: + liveness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + readiness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + +nameOverride: "" +fullnameOverride: "" + +timezone: UTC +puid: 1000 +pgid: 1000 + +# iDRAC connection details +idrac: + host: + user: + password: + port: 443 + keycode_hack: false + +service: + type: ClusterIP + port: 5800 + ## Specify the nodePort value for the LoadBalancer and NodePort service types. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## + # nodePort: + ## Provide any additional annotations which may be required. This can be used to + ## set the LoadBalancer service type to internal only. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + annotations: {} + labels: {} + ## Use loadBalancerIP to request a specific static IP, + ## otherwise leave blank + ## + loadBalancerIP: + # loadBalancerSourceRanges: [] + ## Set the externalTrafficPolicy in the Service to either Cluster or Local + # externalTrafficPolicy: Cluster + +ingress: + enabled: false + annotations: + {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + path: / + hosts: + - chart-example.local + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +persistence: + app: + enabled: false + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + # storageClass: "-" + ## + ## If you want to reuse an existing claim, you can pass the name of the PVC using + ## the existingClaim variable + # existingClaim: your-claim + accessMode: ReadWriteOnce + size: 1Gi + ## If subPath is set mount a sub folder of a volume instead of the root of the volume. + ## This is especially handy for volume plugins that don't natively support sub mounting (like glusterfs). + ## + subPath: "" + ## Do not delete the pvc upon helm uninstall + skipuninstall: false + vmedia: + enabled: false + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + # storageClass: "-" + ## + ## If you want to reuse an existing claim, you can pass the name of the PVC using + ## the existingClaim variable + # existingClaim: your-claim + accessMode: ReadWriteOnce + size: 1Gi + ## If subPath is set mount a sub folder of a volume instead of the root of the volume. + ## This is especially handy for volume plugins that don't natively support sub mounting (like glusterfs). + ## + subPath: "" + ## Do not delete the pvc upon helm uninstall + skipuninstall: false + screenshots: + enabled: false + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + # storageClass: "-" + ## + ## If you want to reuse an existing claim, you can pass the name of the PVC using + ## the existingClaim variable + # existingClaim: your-claim + accessMode: ReadWriteOnce + size: 1Gi + ## If subPath is set mount a sub folder of a volume instead of the root of the volume. + ## This is especially handy for volume plugins that don't natively support sub mounting (like glusterfs). + ## + subPath: "" + ## Do not delete the pvc upon helm uninstall + skipuninstall: false + extraExistingClaimMounts: + [] + # - name: external-mount + # mountPath: /srv/external-mount + ## A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + # existingClaim: + # readOnly: 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: {} + +podAnnotations: {} + +deploymentAnnotations: {}