From 38c3c2fc8cc47a298d05c3d0e0ac3722bfc363fc Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Wed, 8 Apr 2020 18:15:00 +0200 Subject: [PATCH] Minor documentation improvements --- charts/redirect/Chart.yaml | 6 +++++- charts/redirect/templates/deployment.yaml | 4 ++-- charts/redirect/values.yaml | 7 +++++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/charts/redirect/Chart.yaml b/charts/redirect/Chart.yaml index d32d508..a888b4c 100644 --- a/charts/redirect/Chart.yaml +++ b/charts/redirect/Chart.yaml @@ -1,6 +1,7 @@ apiVersion: v2 name: redirect description: Redirect Delpoyment +home: https://github.com/wyrihaximusnet/docker-redirect # A chart can be either an 'application' or a 'library' chart. # @@ -14,8 +15,11 @@ 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. -version: 0.0.1 +version: 0.0.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. appVersion: random + +maintainers: + - name: WyriHaximus diff --git a/charts/redirect/templates/deployment.yaml b/charts/redirect/templates/deployment.yaml index 5034d80..7ed4b2e 100644 --- a/charts/redirect/templates/deployment.yaml +++ b/charts/redirect/templates/deployment.yaml @@ -52,12 +52,12 @@ spec: path: /ping port: http-metrics volumeMounts: - - name: {{ include ".helm.fullname" . }}-configmap-volume + - name: {{ include ".helm.fullname" . }}-volume mountPath: /etc/redirect/ resources: {{- toYaml .Values.resources | nindent 12 }} volumes: - - name: {{ include ".helm.fullname" . }}-configmap-volume + - name: {{ include ".helm.fullname" . }}-volume configMap: name: {{ include ".helm.fullname" . }} {{- with .Values.nodeSelector }} diff --git a/charts/redirect/values.yaml b/charts/redirect/values.yaml index 3324e84..3bbd005 100644 --- a/charts/redirect/values.yaml +++ b/charts/redirect/values.yaml @@ -3,6 +3,7 @@ # Declare variables to be passed into your templates. # Redirect Application Configuration +# Detailed description of all options: https://github.com/wyrihaximusnet/docker-redirect#configuration redirect: # The default fallback is use in case the application can't find a domain to redirect to within the other configuration options defaultFallbackTarget: https://wyrihaximus.net/ @@ -13,9 +14,10 @@ redirect: ingressHosts: [] # For example we're could be redirecting from wyrihaximus.net to www.wyrihaximus.net so we need the wyrihaximus.net ingress host defined here # - wyrihaximus.net - + replicaCount: 2 +# Available tags: https://github.com/wyrihaximusnet/docker-redirect#provided-tags image: repository: wyrihaximusnet/redirect tag: random @@ -61,7 +63,8 @@ resources: cpu: 10m memory: 16Mi -nodeSelector: {} ## WE should set this to always run on two different nodes +## WE should set this to always run on two different nodes +nodeSelector: {} tolerations: []