From b75b1da493c9091430c0b0b28d36428006e1da17 Mon Sep 17 00:00:00 2001
From: groundhog2k <10630407+groundhog2k@users.noreply.github.com>
Date: Mon, 14 Dec 2020 18:39:55 +0100
Subject: [PATCH] Fixed illegal char in name (#147)

---
 charts/gitea/Chart.yaml                | 2 +-
 charts/gitea/README.md                 | 2 +-
 charts/gitea/templates/deployment.yaml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/charts/gitea/Chart.yaml b/charts/gitea/Chart.yaml
index 891e74e9..9883af2b 100644
--- a/charts/gitea/Chart.yaml
+++ b/charts/gitea/Chart.yaml
@@ -8,7 +8,7 @@ maintainers:
   - name: groundhog2k
 
 # This is the chart version
-version: 0.2.2
+version: 0.2.3
 
 # This is the version number of the application being deployed.
 appVersion: "1.13.0"
diff --git a/charts/gitea/README.md b/charts/gitea/README.md
index 3d1ce294..99aff99e 100644
--- a/charts/gitea/README.md
+++ b/charts/gitea/README.md
@@ -1,6 +1,6 @@
 #  Gitea
 
-![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.13.0](https://img.shields.io/badge/AppVersion-1.13.0-informational?style=flat-square)
+![Version: 0.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.13.0](https://img.shields.io/badge/AppVersion-1.13.0-informational?style=flat-square)
 
 A Helm chart for Gitea on Kubernetes
 
diff --git a/charts/gitea/templates/deployment.yaml b/charts/gitea/templates/deployment.yaml
index 6d5bdbd7..faf3bfe0 100644
--- a/charts/gitea/templates/deployment.yaml
+++ b/charts/gitea/templates/deployment.yaml
@@ -43,7 +43,7 @@ spec:
             - name: gitea-vol
               mountPath: /data
       containers:
-        - name: {{ .Chart.Name }}^
+        - name: {{ .Chart.Name }}
           {{- with .Values.securityContext }}
           securityContext:
             {{- toYaml . | nindent 12 }}
-- 
GitLab