From 9c273c2a59755a46ff3933470b02df857537a4af Mon Sep 17 00:00:00 2001 From: Alex Dunn Date: Sun, 14 Feb 2021 23:00:54 -0800 Subject: helm: standardize yaml configuration (#15728) - move application variables under `mastodon` namespace - restore standard yaml structure for ingress configuration - move values.yaml.template to values.yaml --- .gitignore | 1 - 1 file changed, 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 4545270b3..8d921392b 100644 --- a/.gitignore +++ b/.gitignore @@ -46,7 +46,6 @@ # ignore Helm lockfile, dependency charts, and local values file /chart/Chart.lock /chart/charts/*.tgz -/chart/values.yaml # Ignore Apple files .DS_Store -- cgit From 38a6ae2d070ecb0ce28cf91c27b5a9ff318e2346 Mon Sep 17 00:00:00 2001 From: Alex Dunn Date: Fri, 19 Feb 2021 00:56:40 -0800 Subject: helm: pin versions, commit lockfile (#15749) --- .gitignore | 3 +-- chart/Chart.lock | 12 ++++++++++++ chart/Chart.yaml | 6 +++--- 3 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 chart/Chart.lock (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 8d921392b..b4d2712ff 100644 --- a/.gitignore +++ b/.gitignore @@ -43,8 +43,7 @@ /redis /elasticsearch -# ignore Helm lockfile, dependency charts, and local values file -/chart/Chart.lock +# ignore Helm dependency charts /chart/charts/*.tgz # Ignore Apple files diff --git a/chart/Chart.lock b/chart/Chart.lock new file mode 100644 index 000000000..7ed405bf7 --- /dev/null +++ b/chart/Chart.lock @@ -0,0 +1,12 @@ +dependencies: +- name: elasticsearch + repository: https://charts.bitnami.com/bitnami + version: 12.8.2 +- name: postgresql + repository: https://charts.bitnami.com/bitnami + version: 8.10.14 +- name: redis + repository: https://charts.bitnami.com/bitnami + version: 10.9.0 +digest: sha256:9e423aa9a7a46f49e44f0411d61afd685eedf4475752a2b1a24a86a83b0752d0 +generated: "2021-02-16T17:10:49.594247-08:00" diff --git a/chart/Chart.yaml b/chart/Chart.yaml index d72b7df1a..72d710a05 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -24,13 +24,13 @@ appVersion: 3.3.0 dependencies: - name: elasticsearch - version: "12.x.x" + version: 12.8.2 repository: https://charts.bitnami.com/bitnami condition: elasticsearch.enabled - name: postgresql - version: "8.x.x" + version: 8.10.14 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled - name: redis - version: "10.x.x" + version: 10.9.0 repository: https://charts.bitnami.com/bitnami -- cgit