diff options
author | Alex Dunn <dunn.alex@gmail.com> | 2021-02-19 00:56:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-19 09:56:40 +0100 |
commit | 38a6ae2d070ecb0ce28cf91c27b5a9ff318e2346 (patch) | |
tree | d55fc1f3852fe938bb7c6b7f25aeb0e4b05951cf | |
parent | c9e8e1739c698291e1b034d19a1b01d75c9e039b (diff) |
helm: pin versions, commit lockfile (#15749)
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | chart/Chart.lock | 12 | ||||
-rw-r--r-- | chart/Chart.yaml | 6 |
3 files changed, 16 insertions, 5 deletions
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 |