From ea39316b2c63a3c8e057706f73d1a432ec4a5ec3 Mon Sep 17 00:00:00 2001 From: Nithya Natarajan Date: Wed, 24 Mar 2021 18:58:32 +0530 Subject: [PATCH] Introduce official helm chart for dobby --- charts/dobby-1.0.0.tgz | Bin 0 -> 2118 bytes {examples/helm => charts/dobby}/.helmignore | 0 {examples/helm => charts/dobby}/Chart.yaml | 4 ++-- .../helm => charts/dobby}/templates/_helpers.tpl | 0 .../dobby}/templates/deployment.yaml | 0 .../helm => charts/dobby}/templates/service.yaml | 0 {examples/helm => charts/dobby}/values.yaml | 2 +- 7 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 charts/dobby-1.0.0.tgz rename {examples/helm => charts/dobby}/.helmignore (100%) rename {examples/helm => charts/dobby}/Chart.yaml (96%) rename {examples/helm => charts/dobby}/templates/_helpers.tpl (100%) rename {examples/helm => charts/dobby}/templates/deployment.yaml (100%) rename {examples/helm => charts/dobby}/templates/service.yaml (100%) rename {examples/helm => charts/dobby}/values.yaml (98%) diff --git a/charts/dobby-1.0.0.tgz b/charts/dobby-1.0.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..7bef70864840fcf438785d35da9e81ac09e653b1 GIT binary patch literal 2118 zcmV-M2)XwkiwG0|00000|0w_~VMtOiV@ORlOnEsqVl!4SWK%V1T2nbTPgYhoO;>Dc zVQyr3R8em|NM&qo0PH$jbK5r7dB(3epZs;&dLxQb6gk70K6vbIH?z5D>TWunPA3DA zhazGSU;t2#*75%K9RR#buAQwD@5OkqNZ{byaBetsB3G;J2fTU?v03jNz36YE~YDF5}FSf5`+pFIO1A^VB*BBoZ#D=tK_A5-j&*|=azuL7`3Kq``F2^Fqckxgt%0E3oAvPZc>8^zHU|h zbx>WWw>^8JUxh0+YcCMS?-oA&}z!HsPIW&&a4iwFxjf^oa% zf^*<6oUbgJ;EgXny9p0I+Vmk}SUho$EI%vLlzo8Fcmx$L8~d-Wi0AD@AvFlJp0M{M&#$PeCEKX~QFlr7)C`Kl zuTg7VA+)MxX`{(u`A}=@+V$ILo9hP8|2xj3?{0sbEsu>3Jd)r?uOPp-=Ce2XiOdy> z36sL;D?R>7j|R9r(c2r>{>Prlb8=nlAoHR{^%ga4mKEnG_8XO3_izTOmt}z*}wjNP! zEoZ(&-K(s+aJfNULm9_=8StHxT@88X4)$}+gf_Mc?eko_5G{)R3mr+C_&?152^L&# zZK-*8-GCeN|C2>Hy#GI)Pap38Uu1Oqf3zs{WHTk_Oe7JUHkLqgG&G@x+Uou~gKaaC zGg_#;!)^g^uHA>{jq85|!9-#&H*>qwCeP~f&RI;gx8*9UbXy0WOzmc#P)<#pz35Qh zOM5r`v^*?4+S(&3v>gR_jP8zCbJf3@djxjS&UL+-^1F@vh333R_gTHI+87v zU5*;KlVvqIa5F!|LT)|BRZHo)8uA-e~L)Y+eSf}+;>u5-2+3ASw;A`7uef|om zx|Y$^Ze~o;Tj(6dQdZSNO{LQb3@pw*6-P-)BV)-U_~~TXS!?=)O0KZaiRIu29GnI~ z;Tnh65bw4f_b}o39!S=9B=3fWUWfCRJnWcj+Xm|)Xd6CvVxl`_yA7Tetk?Fr(=bwZ zi#oBl?jPMLolcvoh3fXM{xxd%m;Z)f{( z-v0x8pJ!_!6@CU9H~RmRr#s(&!-xO>_#)!~med$j!hN~*CIA;13RsnlCrqrNpz%3f zqi#M3>#}ej2s%T~Va?^rU%Z%DKL&-I8n!`K+;rxtNXP*QT)RvO-xLZ{_5l;0VE^yi z0A35e1u5K4%Mui*+~=);1gB?j&x}+^4xnmQy*W99gegseH8T_U*RxN8)!)^`{jDdm z^~CzT0|=vpO=N}eQRpQ^0CW}z%m4rY literal 0 HcmV?d00001 diff --git a/examples/helm/.helmignore b/charts/dobby/.helmignore similarity index 100% rename from examples/helm/.helmignore rename to charts/dobby/.helmignore diff --git a/examples/helm/Chart.yaml b/charts/dobby/Chart.yaml similarity index 96% rename from examples/helm/Chart.yaml rename to charts/dobby/Chart.yaml index 4cd58f6..beba4bc 100644 --- a/examples/helm/Chart.yaml +++ b/charts/dobby/Chart.yaml @@ -15,9 +15,9 @@ 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 +version: 1.0.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. -#appVersion: 1.0.0 +appVersion: v2.0.1 diff --git a/examples/helm/templates/_helpers.tpl b/charts/dobby/templates/_helpers.tpl similarity index 100% rename from examples/helm/templates/_helpers.tpl rename to charts/dobby/templates/_helpers.tpl diff --git a/examples/helm/templates/deployment.yaml b/charts/dobby/templates/deployment.yaml similarity index 100% rename from examples/helm/templates/deployment.yaml rename to charts/dobby/templates/deployment.yaml diff --git a/examples/helm/templates/service.yaml b/charts/dobby/templates/service.yaml similarity index 100% rename from examples/helm/templates/service.yaml rename to charts/dobby/templates/service.yaml diff --git a/examples/helm/values.yaml b/charts/dobby/values.yaml similarity index 98% rename from examples/helm/values.yaml rename to charts/dobby/values.yaml index 23fcb17..b24a04b 100644 --- a/examples/helm/values.yaml +++ b/charts/dobby/values.yaml @@ -13,7 +13,7 @@ image: repository: thecasualcoder/dobby pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: "latest" + # tag: "latest" imagePullSecrets: [] nameOverride: ""