├── .github └── workflows │ └── build.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── dcb-os.yml ├── defaults └── main.yml ├── dl-checksum.sh ├── handlers └── main.yml ├── meta ├── main.yml └── requirements.yml ├── tasks ├── brew.yml ├── main.yml └── tgz.yml ├── test.yml ├── tests ├── inventory └── test.yml └── vars ├── Darwin.yml ├── Windows.yml └── main.yml /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | --- 2 | jobs: 3 | build: 4 | runs-on: ubuntu-latest 5 | steps: 6 | - uses: actions/checkout@v3 7 | - name: install python ${{ matrix.python-version }} 8 | uses: actions/setup-python@v4 9 | with: 10 | python-version: ${{ matrix.python-version }} 11 | - name: install task 12 | uses: arduino/setup-task@v1 13 | with: 14 | repo-token: ${{ github.token }} 15 | - name: task ver 16 | run: task --version 17 | - name: download task mono 18 | uses: actions/checkout@v3 19 | with: 20 | path: taskmono 21 | ref: develop 22 | repository: andrewrothstein/tasks 23 | - name: 'task #ftw' 24 | run: task -t taskmono/ansible-test-role.yml "targetuser=${{ github.actor }}" 25 | "targetpwd=${{ github.token }}" "alltags=${{ matrix.os }}" 26 | strategy: 27 | fail-fast: false 28 | matrix: 29 | os: 30 | - alpine_3.17 31 | - alpine_3.18 32 | - alpine_edge 33 | - archlinux_latest 34 | - debian_bookworm 35 | - debian_bullseye 36 | - fedora_37 37 | - fedora_38 38 | - rockylinux_8 39 | - rockylinux_9 40 | - ubuntu_focal 41 | - ubuntu_jammy 42 | python-version: 43 | - '3.11' 44 | name: dcb 45 | 'on': 46 | - push 47 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **~*.retry 2 | Dockerfile.* 3 | requirements.yml 4 | !meta/requirements.yml 5 | **/*undo-tree* -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | - repo: https://github.com/pre-commit/pre-commit-hooks 3 | sha: v0.8.0 4 | hooks: 5 | - id: trailing-whitespace 6 | - id: end-of-file-fixer 7 | - id: check-json 8 | - id: check-yaml 9 | - id: check-symlinks 10 | - id: detect-aws-credentials 11 | args: 12 | - --allow-missing-credentials 13 | - id: check-added-large-files 14 | - id: detect-private-key 15 | 16 | - repo: https://github.com/willthames/ansible-lint.git 17 | sha: v3.4.13 18 | hooks: 19 | - id: ansible-lint 20 | files: \.(yaml|yml)$ 21 | args: [ 22 | "--exclude=roles", 23 | "--exclude=basic/roles", 24 | "--exclude=.travis.yml" 25 | ] 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Andrew Rothstein 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | andrewrothstein.kubernetes-helm 2 | ========= 3 | ![Build Status](https://github.com/andrewrothstein/ansible-kubernetes-helm/actions/workflows/build.yml/badge.svg) 4 | 5 | Installs Kubernetes [Helm](https://helm.sh) 6 | 7 | Requirements 8 | ------------ 9 | 10 | See [meta/main.yml](meta/main.yml) 11 | 12 | Role Variables 13 | -------------- 14 | 15 | See [defaults/main.yml](defaults/main.yml) 16 | 17 | Dependencies 18 | ------------ 19 | 20 | See [meta/main.yml](meta/main.yml) 21 | 22 | Example Playbook 23 | ---------------- 24 | 25 | ```yml 26 | - hosts: servers 27 | roles: 28 | - andrewrothstein.kubernetes-helm 29 | ``` 30 | 31 | License 32 | ------- 33 | 34 | MIT 35 | 36 | Author Information 37 | ------------------ 38 | 39 | Andrew Rothstein andrew.rothstein@gmail.com 40 | -------------------------------------------------------------------------------- /dcb-os.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - alpine_3.17 3 | - alpine_3.18 4 | - alpine_edge 5 | - archlinux_latest 6 | - debian_bookworm 7 | - debian_bullseye 8 | - fedora_37 9 | - fedora_38 10 | - rockylinux_8 11 | - rockylinux_9 12 | - ubuntu_focal 13 | - ubuntu_jammy 14 | -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | kubernetes_helm_mirror: https://get.helm.sh 3 | kubernetes_helm_ver: v3.12.1 4 | kubernetes_helm_os: linux 5 | kubernetes_helm_arch_map: 6 | 386: 386 7 | armv6l: arm 8 | armv7l: arm 9 | aarch64: arm64 10 | x86_64: amd64 11 | ppc64le: ppc64le 12 | s390x: s390x 13 | kubernetes_helm_arch: amd64 14 | kubernetes_helm_archive_type: tar.gz 15 | 16 | kubernetes_helm_parent_install_dir: /usr/local 17 | 18 | kubernetes_helm_checksums: 19 | v2.7.2: 20 | # https://get.helm.sh/helm-v2.7.2-darwin-amd64.tar.gz.sha256 21 | darwin-amd64: sha256:5058142bcd6e16b7e01695a8f258d27ae0b6469caf227ddf6aa2181405e6aa8e 22 | # https://get.helm.sh/helm-v2.7.2-linux-amd64.tar.gz.sha256 23 | linux-amd64: sha256:9f04c4824fc751d6c932ae5b93f7336eae06e78315352aa80241066aa1d66c49 24 | # https://get.helm.sh/helm-v2.7.2-linux-arm.tar.gz.sha256 25 | linux-arm: sha256:64b18552c9c63aba52e5b95ccf5056de84a11cc7339008e2c7dbba3ad099f9b6 26 | # https://get.helm.sh/helm-v2.7.2-linux-arm64.tar.gz.sha256 27 | linux-arm64: sha256:4db6d202693e8d045f100953eb9dfe4225830fca80fd95bd9e86224342e6a0b8 28 | # https://get.helm.sh/helm-v2.7.2-linux-386.tar.gz.sha256 29 | linux-386: sha256:642dc34f1a6862b532c4296ff26fee3e65979edfc320ecb62f225d9a564e5f2f 30 | # https://get.helm.sh/helm-v2.7.2-linux-ppc64le.tar.gz.sha256 31 | linux-ppc64le: sha256:764399f3aaed9de2d31a048dc2e2a960e5554fff272b103bca2fca10ab53e63f 32 | v2.8.0: 33 | # https://get.helm.sh/helm-v2.8.0-darwin-amd64.tar.gz.sha256 34 | darwin-amd64: sha256:6d38a8a59f5793c01e4adb3278e281088d4f76d1ac9388a3a1d1a32d4790944a 35 | # https://get.helm.sh/helm-v2.8.0-linux-amd64.tar.gz.sha256 36 | linux-amd64: sha256:6e1f5957f9c7cec8463f38cf658bea0cf225fc324236617b23fe9044e9dd4ba7 37 | # https://get.helm.sh/helm-v2.8.0-linux-arm.tar.gz.sha256 38 | linux-arm: sha256:15319e9ec6e4c7d07d78f7db50b4cb8514bc2cfab7f1dfff5eb4de823f7ebe9d 39 | # https://get.helm.sh/helm-v2.8.0-linux-arm64.tar.gz.sha256 40 | linux-arm64: sha256:69e207f7e8dde6aa0a411d95fc7a01fa41f80a9ebe071854ba27b149fcfb7011 41 | # https://get.helm.sh/helm-v2.8.0-linux-386.tar.gz.sha256 42 | linux-386: sha256:4d5521d69bc4924ff71df3d5a7884bd96a247e935e82903b295101914ec246f0 43 | # https://get.helm.sh/helm-v2.8.0-linux-ppc64le.tar.gz.sha256 44 | linux-ppc64le: sha256:081e392291e596764333634a9cb94742455e5ff5574c08c7fa8f32827a3dd2ab 45 | # https://get.helm.sh/helm-v2.8.0-windows-amd64.zip.sha256 46 | windows-amd64: sha256:903077f8681a9e6ba4c95c569285c548e8c163b0739b339da8f7ea9e3507a944 47 | v2.8.1: 48 | # https://get.helm.sh/helm-v2.8.1-darwin-amd64.tar.gz.sha256 49 | darwin-amd64: sha256:dd5c929516cf0f77fd2232094979b404a6602c6ed3a052d500ab69e89f49d0b8 50 | # https://get.helm.sh/helm-v2.8.1-linux-amd64.tar.gz.sha256 51 | linux-amd64: sha256:7df7e9eb1b7fde74cc9741682944e620793e618761ccfa8d4bfb355791b76f1d 52 | # https://get.helm.sh/helm-v2.8.1-linux-arm.tar.gz.sha256 53 | linux-arm: sha256:1f459a8899d18267f0d7cfa39ed31748f252ad490da25f9321347a67ba52ebba 54 | # https://get.helm.sh/helm-v2.8.1-linux-arm64.tar.gz.sha256 55 | linux-arm64: sha256:cdb35632ef4d8744c17dfd7d158dc2195b4772a098e5d3f1e3a65859b649c7cd 56 | # https://get.helm.sh/helm-v2.8.1-linux-386.tar.gz.sha256 57 | linux-386: sha256:f6a07d97a4f8fffa6596c43a013fe0ee618b67ff11d2e1e347bb2db8b8a65de2 58 | # https://get.helm.sh/helm-v2.8.1-linux-ppc64le.tar.gz.sha256 59 | linux-ppc64le: sha256:c3a83c71173eacacc7019e36e75d05b58419cdcd886b53ea77642e30ede765ff 60 | # https://get.helm.sh/helm-v2.8.1-windows-amd64.zip.sha256 61 | windows-amd64: sha256:8fbc9e425eb5f806b7f562a03ed03e12fad702a8ce7fc52b7b3409522f33c4f9 62 | v2.9.0: 63 | # https://get.helm.sh/helm-v2.9.0-darwin-amd64.tar.gz.sha256 64 | darwin-amd64: sha256:17ab41a11cc31e8e2774718c556d97428235f35c5309f4353b93b47a8984bc6a 65 | # https://get.helm.sh/helm-v2.9.0-linux-amd64.tar.gz.sha256 66 | linux-amd64: sha256:065f70df6a5c2fb6e89e92cd8297459feccc8cfb5b8ca50aa1b06bb863bcd22e 67 | # https://get.helm.sh/helm-v2.9.0-linux-arm.tar.gz.sha256 68 | linux-arm: sha256:a9d7490d0061e70f17428117c4b8958f87a0812a030d71c60a1e125ea3816456 69 | # https://get.helm.sh/helm-v2.9.0-linux-arm64.tar.gz.sha256 70 | linux-arm64: sha256:0ba9acee1cd9d6e49ccbbfc10e37e9b8b6356aaeb839757126a7d47b7ddba826 71 | # https://get.helm.sh/helm-v2.9.0-linux-386.tar.gz.sha256 72 | linux-386: sha256:8bca8ac35babb011c107a50f6cb72095f9eb200198856e589ecb359eb958ae92 73 | # https://get.helm.sh/helm-v2.9.0-linux-ppc64le.tar.gz.sha256 74 | linux-ppc64le: sha256:21cedd8fb0f88f4c8966d03e2a197d1cbc5318662516e15c964983ce73d2255b 75 | # https://get.helm.sh/helm-v2.9.0-windows-amd64.zip.sha256 76 | windows-amd64: sha256:6b8fbe206511ab790a4f5be690e42fe418dd95fc6a69714ed03cfa70c488827d 77 | v2.9.1: 78 | # https://get.helm.sh/helm-v2.9.1-darwin-amd64.tar.gz.sha256 79 | darwin-amd64: sha256:3bf676b6adbc4bb1a513c22c59f8d183fed278c9cb4db5808473541888f1efcb 80 | # https://get.helm.sh/helm-v2.9.1-linux-amd64.tar.gz.sha256 81 | linux-amd64: sha256:56ae2d5d08c68d6e7400d462d6ed10c929effac929fedce18d2636a9b4e166ba 82 | # https://get.helm.sh/helm-v2.9.1-linux-arm.tar.gz.sha256 83 | linux-arm: sha256:59bb8c8f499027d8ce63452cf04c0079de4eeef31a388783d108781bed462b47 84 | # https://get.helm.sh/helm-v2.9.1-linux-arm64.tar.gz.sha256 85 | linux-arm64: sha256:1ac359ac32acfeedbe75f562bf7d245814c61f136013bd5d7bb887079cd542a4 86 | # https://get.helm.sh/helm-v2.9.1-linux-386.tar.gz.sha256 87 | linux-386: sha256:d6413731c45ae45a55020598641703d7ac2abb1c6f4d0f04f4cc037d6e98c401 88 | # https://get.helm.sh/helm-v2.9.1-linux-ppc64le.tar.gz.sha256 89 | linux-ppc64le: sha256:22671d0a5667c10c11fedf6901eadcbedd66bc0024cc6e8db3669df8feef230e 90 | # https://get.helm.sh/helm-v2.9.1-windows-amd64.zip.sha256 91 | windows-amd64: sha256:da8a11ec91a19f4a7c1d62f4e11fd3b88d4ce722878451371c197d8f96295fbe 92 | v2.10.0: 93 | # https://get.helm.sh/helm-v2.10.0-darwin-amd64.tar.gz.sha256 94 | darwin-amd64: sha256:7c4e6bfbc211d6b984ffb4fa490ce9ac112cc4b9b8d859ece27045b8514c1ed1 95 | # https://get.helm.sh/helm-v2.10.0-linux-amd64.tar.gz.sha256 96 | linux-amd64: sha256:0fa2ed4983b1e4a3f90f776d08b88b0c73fd83f305b5b634175cb15e61342ffe 97 | # https://get.helm.sh/helm-v2.10.0-linux-arm64.tar.gz.sha256 98 | linux-arm64: sha256:5b6bcdb637623f7945a9e3506ba5bdca0436a8fb57b2c2e4871f37289588cc6e 99 | v2.11.0: 100 | # https://get.helm.sh/helm-v2.11.0-darwin-amd64.tar.gz.sha256 101 | darwin-amd64: sha256:551b13a398749ae3e0a5c54d3078f6e3bee552c5d6a0bf6f338cab64ce38ab0f 102 | # https://get.helm.sh/helm-v2.11.0-linux-amd64.tar.gz.sha256 103 | linux-amd64: sha256:02a4751586d6a80f6848b58e7f6bd6c973ffffadc52b4c06652db7def02773a1 104 | # https://get.helm.sh/helm-v2.11.0-linux-arm64.tar.gz.sha256 105 | linux-arm64: sha256:7b3532634fb98151af23d32583187064f7ad18df87f96c456a15bc4ed82ae00e 106 | v2.12.0: 107 | # https://get.helm.sh/helm-v2.12.0-darwin-amd64.tar.gz.sha256 108 | darwin-amd64: sha256:2b7e4fb460d7c641be1b90aad38a882462f88fd47975cc91aa17600ab5152590 109 | # https://get.helm.sh/helm-v2.12.0-linux-amd64.tar.gz.sha256 110 | linux-amd64: sha256:9f96a6e4fc52b5df906da381532cc2eb2f3f57cc203ccaec2b11cf5dc26a7dfc 111 | # https://get.helm.sh/helm-v2.12.0-linux-arm64.tar.gz.sha256 112 | linux-arm64: sha256:b4d59acf8eba555ae17f3278e930756e3a99aba368538960f6dc26f8d61a1eab 113 | v2.12.2: 114 | # https://get.helm.sh/helm-v2.12.2-linux-amd64.tar.gz.sha256 115 | linux-amd64: sha256:edad6d5e594408b996b8d758a04948f89dab15fa6c6ea6daee3709f8c099df6d 116 | # https://get.helm.sh/helm-v2.12.2-linux-arm64.tar.gz.sha256 117 | linux-arm64: sha256:b7eb700e28234bd63247dceda77b2928b75bf2a42ef7667e95c96721547175a4 118 | # https://get.helm.sh/helm-v2.12.2-darwin-amd64.tar.gz.sha256 119 | darwin-amd64: sha256:10f8e200fdfe4f4b6b0cbe6f5420b99eec2a34f666b4126ae7881b9bd6dddb39 120 | v2.12.3: 121 | # https://get.helm.sh/helm-v2.12.3-linux-amd64.tar.gz.sha256 122 | linux-amd64: sha256:3425a1b37954dabdf2ba37d5d8a0bd24a225bb8454a06f12b115c55907809107 123 | # https://get.helm.sh/helm-v2.12.3-linux-arm64.tar.gz.sha256 124 | linux-arm64: sha256:ddad674aa723bb638bdb90843814b91810e8d87bcfcf367ffe7ccd9066cacd03 125 | # https://get.helm.sh/helm-v2.12.3-darwin-amd64.tar.gz.sha256 126 | darwin-amd64: sha256:564a087915e07333d2335face555eaac63accd669fb63672ae1b66a73144ac50 127 | v2.13.0: 128 | # https://get.helm.sh/helm-v2.13.0-linux-amd64.tar.gz.sha256 129 | linux-amd64: sha256:15eca6ad225a8279de80c7ced42305e24bc5ac60bb7d96f2d2fa4af86e02c794 130 | # https://get.helm.sh/helm-v2.13.0-linux-arm64.tar.gz.sha256 131 | linux-arm64: sha256:afb51c43ed83fe8bac62f7e47872019cf1c0d8a1927d69fb963959c6accc77b5 132 | # https://get.helm.sh/helm-v2.13.0-darwin-amd64.tar.gz.sha256 133 | darwin-amd64: sha256:166318b2159613f87a7cb02af1614c96244b3d3c119f8e010429c1b4449681d5 134 | v2.13.1: 135 | # https://get.helm.sh/helm-v2.13.1-linux-amd64.tar.gz.sha256 136 | linux-amd64: sha256:c1967c1dfcd6c921694b80ededdb9bd1beb27cb076864e58957b1568bc98925a 137 | # https://get.helm.sh/helm-v2.13.1-linux-arm64.tar.gz.sha256 138 | linux-arm64: sha256:25ed0b72435007976306f9f44724e1e965bd9e7be839fb4f9851156ab69f0092 139 | # https://get.helm.sh/helm-v2.13.1-darwin-amd64.tar.gz.sha256 140 | darwin-amd64: sha256:c9564c4133349b98a8c1dda42fdb6545f6e4bfdf0980cdfc38cf76d2f8e5e701 141 | v2.14.0: 142 | # https://get.helm.sh/helm-v2.14.0-linux-amd64.tar.gz.sha256 143 | linux-amd64: sha256:b5f6a1e642971af1363cadbe1f7f37c029c11dd93813151b521c0dbeacfbdaa9 144 | # https://get.helm.sh/helm-v2.14.0-linux-arm64.tar.gz.sha256 145 | linux-arm64: sha256:714ba7433545ae6ccebc7a8cda9c63f86eaba0ec2f89a65056da181d230b389a 146 | # https://get.helm.sh/helm-v2.14.0-darwin-amd64.tar.gz.sha256 147 | darwin-amd64: sha256:92ae686de2dc74783aebfb0b7f1a95ebf2b3b62814c37adae2b2e7fa9cc92ceb 148 | v2.14.1: 149 | # https://get.helm.sh/helm-v2.14.1-darwin-amd64.tar.gz.sha256 150 | darwin-amd64: sha256:392ec847ecc5870a48a39cb0b8d13c8aa72aaf4365e0315c4d7a2553019a451c 151 | # https://get.helm.sh/helm-v2.14.1-linux-amd64.tar.gz.sha256 152 | linux-amd64: sha256:804f745e6884435ef1343f4de8940f9db64f935cd9a55ad3d9153d064b7f5896 153 | # https://get.helm.sh/helm-v2.14.1-linux-arm.tar.gz.sha256 154 | linux-arm: sha256:87bc9dca56a9bc61a55fc96c0064f732509ba743852361a2116b7e37166a5349 155 | # https://get.helm.sh/helm-v2.14.1-linux-arm64.tar.gz.sha256 156 | linux-arm64: sha256:60b4357e2280a480819ef194da559b3adc7ec3e6a9ef084ee42f31f47fe80aed 157 | # https://get.helm.sh/helm-v2.14.1-linux-386.tar.gz.sha256 158 | linux-386: sha256:bdc175a716222ccfc81ef05b1a7fe0d05d5a0b6d27754739f38cd0e5f4945738 159 | # https://get.helm.sh/helm-v2.14.1-linux-ppc64le.tar.gz.sha256 160 | linux-ppc64le: sha256:8b827c7a1ccfc3eb230447356b15af3ce9dfaa7c1e56b1a7e65995a561f91bcf 161 | # https://get.helm.sh/helm-v2.14.1-linux-s390x.tar.gz.sha256 162 | linux-s390x: sha256:ef52e193f177435ad6b77ee1dfd7756f4eceff67faddd07a6f2ea5e1aa4b6d54 163 | # https://get.helm.sh/helm-v2.14.1-windows-amd64.zip.sha256 164 | windows-amd64: sha256:604780d3fabeb27e7ab7a30c6e29ce64bcd2203501ea35e5231c97965b0255a0 165 | v2.14.2: 166 | # https://get.helm.sh/helm-v2.14.2-darwin-amd64.tar.gz.sha256 167 | darwin-amd64: sha256:9469da75bb357bc325c985dead224480bbacc7aa8aecff74089dff97e64655d0 168 | # https://get.helm.sh/helm-v2.14.2-linux-amd64.tar.gz.sha256 169 | linux-amd64: sha256:9f50e69cf5cfa7268b28686728ad0227507a169e52bf59c99ada872ddd9679f0 170 | # https://get.helm.sh/helm-v2.14.2-linux-arm.tar.gz.sha256 171 | linux-arm: sha256:2711d47f61b7e87ecbfa9667495ce1f3542060618df897418e9584c20769a484 172 | # https://get.helm.sh/helm-v2.14.2-linux-arm64.tar.gz.sha256 173 | linux-arm64: sha256:1f86fc294382365f4dfd9fa08c62337d248f7c8662e3166e24ce083264f105f2 174 | # https://get.helm.sh/helm-v2.14.2-linux-386.tar.gz.sha256 175 | linux-386: sha256:4cdf990e53bcee8378a81f0f81857afe94624967d4c1ad8e5be47a5a0b428944 176 | # https://get.helm.sh/helm-v2.14.2-linux-ppc64le.tar.gz.sha256 177 | linux-ppc64le: sha256:2ef01ab4a3d526a63ed5d2dcbf81ae1aedd49d44c7e2ecee304b12750d428efe 178 | # https://get.helm.sh/helm-v2.14.2-linux-s390x.tar.gz.sha256 179 | linux-s390x: sha256:6a42e33bc111ded7349c34fde01286990507173e9b3ccfe5ad3a0532d4f581a8 180 | # https://get.helm.sh/helm-v2.14.2-windows-amd64.zip.sha256 181 | windows-amd64: sha256:e492fe6b037487098f749722a0836b2766c2fe6e03214de918fa10a93ba6e630 182 | v2.14.3: 183 | # https://get.helm.sh/helm-v2.14.3-darwin-amd64.tar.gz.sha256 184 | darwin-amd64: sha256:3f907cac93c6b18c36910b15af02ddc3d454b59a870899afdfa75548f9a7658d 185 | # https://get.helm.sh/helm-v2.14.3-linux-amd64.tar.gz.sha256 186 | linux-amd64: sha256:38614a665859c0f01c9c1d84fa9a5027364f936814d1e47839b05327e400bf55 187 | # https://get.helm.sh/helm-v2.14.3-linux-arm.tar.gz.sha256 188 | linux-arm: sha256:52535e0811fd68c406e41be240446709d228ca86db1de47a0deb8c8de8e82c8b 189 | # https://get.helm.sh/helm-v2.14.3-linux-arm64.tar.gz.sha256 190 | linux-arm64: sha256:cfcbb577f272bcedef9e4191a619d98d7c622810d4d2445b888743bf3ab908ae 191 | # https://get.helm.sh/helm-v2.14.3-linux-386.tar.gz.sha256 192 | linux-386: sha256:30774449e273e9095f793c4c7154abc5970916985fbc20ed66cc8ad844237479 193 | # https://get.helm.sh/helm-v2.14.3-linux-ppc64le.tar.gz.sha256 194 | linux-ppc64le: sha256:b5de604a22cc405e3bf2a2b9d6c637768ad6bbfb124fa90f81905f2c51a13c95 195 | # https://get.helm.sh/helm-v2.14.3-linux-s390x.tar.gz.sha256 196 | linux-s390x: sha256:2919ac9fdb5c2057e5af26b846b5fe030d20114ed1995223d37daeb8a2eccb7d 197 | # https://get.helm.sh/helm-v2.14.3-windows-amd64.zip.sha256 198 | windows-amd64: sha256:42cd9ee605a6d7935b99ebaca4f21f93183baee44410344793c06099abd4b713 199 | v2.15.0: 200 | # https://get.helm.sh/helm-v2.15.0-darwin-amd64.tar.gz.sha256 201 | darwin-amd64: sha256:a68c032893a1c2d4285c1576ec9f6235a522c7b735424e7e188e6190d3da217e 202 | # https://get.helm.sh/helm-v2.15.0-linux-amd64.tar.gz.sha256 203 | linux-amd64: sha256:50936867d24431a98777828f399b48063c3f66af1ec3ba96ef5a8fc8326ebe74 204 | # https://get.helm.sh/helm-v2.15.0-linux-arm.tar.gz.sha256 205 | linux-arm: sha256:b11d09dacb321b734670e51ccfa29fee5c8cc61d2b75f17decb2644d4e95252f 206 | # https://get.helm.sh/helm-v2.15.0-linux-arm64.tar.gz.sha256 207 | linux-arm64: sha256:88c1d6907adc98993f424250b23a455c1615ea3a1c07de080ca48e1aee0996c1 208 | # https://get.helm.sh/helm-v2.15.0-linux-386.tar.gz.sha256 209 | linux-386: sha256:498054d66691187ac7f96b5be2ed7412a14df8a0f003dcc314f8dae7e71ec19b 210 | # https://get.helm.sh/helm-v2.15.0-linux-ppc64le.tar.gz.sha256 211 | linux-ppc64le: sha256:3a334871e9f9aa91ebbb52e18c8017429af7413e8730101c764a87d7205e0c8b 212 | # https://get.helm.sh/helm-v2.15.0-linux-s390x.tar.gz.sha256 213 | linux-s390x: sha256:34c5d8382003e51beb33fc18bd4fd3ee050c0483885fe02e67a5ddf94d176ac0 214 | # https://get.helm.sh/helm-v2.15.0-windows-amd64.zip.sha256 215 | windows-amd64: sha256:fa76beb2183dcb44efc60e53a67017dfa7c988762079c58aacea87b5da7a8819 216 | v2.15.1: 217 | # https://get.helm.sh/helm-v2.15.1-darwin-amd64.tar.gz.sha256 218 | darwin-amd64: sha256:f51830036f746b7f758a40bf49e02527cc5a9f1b78c5809023e570d318eaff5c 219 | # https://get.helm.sh/helm-v2.15.1-linux-amd64.tar.gz.sha256 220 | linux-amd64: sha256:b4d366bd6625477b2954941aeb7b601946aa4226af6728e3a84eac4e62a84042 221 | # https://get.helm.sh/helm-v2.15.1-linux-arm.tar.gz.sha256 222 | linux-arm: sha256:3b3d7f1117309534eff7b664156d1ee542a285a183fe54d200cd865ff0d8e279 223 | # https://get.helm.sh/helm-v2.15.1-linux-arm64.tar.gz.sha256 224 | linux-arm64: sha256:c7fc09b20d6cb26042e3f0b3f8788a930171d8d1eb8ec083677090563de39aaf 225 | # https://get.helm.sh/helm-v2.15.1-linux-386.tar.gz.sha256 226 | linux-386: sha256:4bc1ec87efa27eda155261d261b7e1cad763bd2ee2c1db9d9c74efb53f7d2a46 227 | # https://get.helm.sh/helm-v2.15.1-linux-ppc64le.tar.gz.sha256 228 | linux-ppc64le: sha256:96f13971ace3b12a8eced6bc59f41dd288b252e5cbdec6cf194800cd1cb207f2 229 | # https://get.helm.sh/helm-v2.15.1-linux-s390x.tar.gz.sha256 230 | linux-s390x: sha256:aa5e387baba648442c69ded35f1e3abcfa4c7c6c92705a8f521582c63297a982 231 | # https://get.helm.sh/helm-v2.15.1-windows-amd64.zip.sha256 232 | windows-amd64: sha256:39f408fef9a0debcfdc07617d18760ace269f6864ff0d0dc9bb171da5e80ec1e 233 | v2.15.2: 234 | # https://get.helm.sh/helm-v2.15.2-darwin-amd64.tar.gz.sha256 235 | darwin-amd64: sha256:0815dc44f9f1c5bcee1c130268bfca2ddf6425b60cf042d3b3c907c35ef11e31 236 | # https://get.helm.sh/helm-v2.15.2-linux-amd64.tar.gz.sha256 237 | linux-amd64: sha256:a9d2db920bd4b3d824729bbe1ff3fa57ad27760487581af6e5d3156d1b3c2511 238 | # https://get.helm.sh/helm-v2.15.2-linux-arm.tar.gz.sha256 239 | linux-arm: sha256:2ba123cf90c154d15d9547319d73b9d6572c50fdb6732bdb5ebe88e3ca2d36e9 240 | # https://get.helm.sh/helm-v2.15.2-linux-arm64.tar.gz.sha256 241 | linux-arm64: sha256:d8f9dcbd9de3ec90b5ee7cb3a94f646e98e1fb4135c44d64d564d9bc244528a2 242 | # https://get.helm.sh/helm-v2.15.2-linux-386.tar.gz.sha256 243 | linux-386: sha256:571d7a953d07dca6fc41a3e3c94bd5a017965ba2946a0887f8e051de9d5bd103 244 | # https://get.helm.sh/helm-v2.15.2-linux-ppc64le.tar.gz.sha256 245 | linux-ppc64le: sha256:efa08697c7721f94c9eb65f7fb76f6cad636fe3b8afee9821fc5503c3efb3991 246 | # https://get.helm.sh/helm-v2.15.2-linux-s390x.tar.gz.sha256 247 | linux-s390x: sha256:1a74c2d865601c25c042a90d8039312ce26d442775ad7260632f505875e33ca7 248 | # https://get.helm.sh/helm-v2.15.2-windows-amd64.zip.sha256 249 | windows-amd64: sha256:f77f8a7640259ea51f1c9480446bfa7a2ba43dc7ec41282d3616f04e6017037c 250 | v2.16.0: 251 | # https://get.helm.sh/helm-v2.16.0-darwin-amd64.tar.gz.sha256 252 | darwin-amd64: sha256:4544c03e044ad19424136fb66267f21b620eeee46dee9ec7735288081ca8d12a 253 | # https://get.helm.sh/helm-v2.16.0-linux-amd64.tar.gz.sha256 254 | linux-amd64: sha256:2d9124f582a33b269f48215a00922b3dcf7a03f265499886ba956fbc03ff9892 255 | # https://get.helm.sh/helm-v2.16.0-linux-arm.tar.gz.sha256 256 | linux-arm: sha256:6df2f4f5e9ef8a5f52f9dd6143f064cd2cfe00ccb2b4b158a94b36e2261e82a6 257 | # https://get.helm.sh/helm-v2.16.0-linux-arm64.tar.gz.sha256 258 | linux-arm64: sha256:ec580af4fc0a76bad094ac5d96d7b57c48d0bab0c5c75f6243abad82f250b3e7 259 | # https://get.helm.sh/helm-v2.16.0-linux-386.tar.gz.sha256 260 | linux-386: sha256:1cbfb55b5a440227ab600868c7b1c8e78162306dcca880f6b816f98f6d19ba01 261 | # https://get.helm.sh/helm-v2.16.0-linux-ppc64le.tar.gz.sha256 262 | linux-ppc64le: sha256:d66cff3a1f3ec9aa0f253e687c36a7e35b8928a392838c30d7c5599059baf164 263 | # https://get.helm.sh/helm-v2.16.0-linux-s390x.tar.gz.sha256 264 | linux-s390x: sha256:84ade41cd41959709e28fdafc45a54b72529da3f03aff3f9197bddb1d6bb2091 265 | # https://get.helm.sh/helm-v2.16.0-windows-amd64.zip.sha256 266 | windows-amd64: sha256:be0b350393a1b6fbcb107a4bfe15bf81f9550b0c86a2a3465c4ce422f77c031d 267 | v2.16.1: 268 | # https://get.helm.sh/helm-v2.16.1-darwin-amd64.tar.gz.sha256 269 | darwin-amd64: sha256:34fc397ec4a992a451d130a962944315ca782242bbd05a8d732a2e74ca2b9153 270 | # https://get.helm.sh/helm-v2.16.1-linux-amd64.tar.gz.sha256 271 | linux-amd64: sha256:7eebaaa2da4734242bbcdced62cc32ba8c7164a18792c8acdf16c77abffce202 272 | # https://get.helm.sh/helm-v2.16.1-linux-arm.tar.gz.sha256 273 | linux-arm: sha256:dc4c322191827420bedb024ae4764189b3e5a19ea62a1662b048f6ef76e0e08b 274 | # https://get.helm.sh/helm-v2.16.1-linux-arm64.tar.gz.sha256 275 | linux-arm64: sha256:9badab17f79a0dfc99144bc77c451c998f61f1e2c97b515743238ae316148b1d 276 | # https://get.helm.sh/helm-v2.16.1-linux-386.tar.gz.sha256 277 | linux-386: sha256:224ee1fc2462e6f4baf3fd249b4f77f11c7d7c55e14f6e0ee52412c88c80ec2b 278 | # https://get.helm.sh/helm-v2.16.1-linux-ppc64le.tar.gz.sha256 279 | linux-ppc64le: sha256:8c7fd32bc11bac6858c5ff1adaf1233b0ef7f9a8c2c43778763860aeba3a89f3 280 | # https://get.helm.sh/helm-v2.16.1-linux-s390x.tar.gz.sha256 281 | linux-s390x: sha256:7872024de6a29c07d6bbd150ce9c8c09bff24a42e07a27b3951eb9d53c7c15ff 282 | # https://get.helm.sh/helm-v2.16.1-windows-amd64.zip.sha256 283 | windows-amd64: sha256:414d09b2559316c3dcb81cc448ba44cbbbf54a08a475998211d8dbe7217dd138 284 | v2.16.2: 285 | # https://get.helm.sh/helm-v2.16.2-darwin-amd64.tar.gz.sha256 286 | darwin-amd64: sha256:8bee3a69bd873c09dd07dc12594837f03a13b443727c7ce76db7b779c4ee9794 287 | # https://get.helm.sh/helm-v2.16.2-linux-amd64.tar.gz.sha256 288 | linux-amd64: sha256:91911d819131380ed6591e09a56df38db0b958d31c8a868a5ab42c29f8251cae 289 | # https://get.helm.sh/helm-v2.16.2-linux-arm.tar.gz.sha256 290 | linux-arm: sha256:763c41372bef6849b00adfe37df51cb4bd5076aee5e7226b7eeb89a0e2aede7d 291 | # https://get.helm.sh/helm-v2.16.2-linux-arm64.tar.gz.sha256 292 | linux-arm64: sha256:27754849ade96634ad0c7ab84ac9c4fd70158e6740254ed8436466ccf68d505e 293 | # https://get.helm.sh/helm-v2.16.2-linux-386.tar.gz.sha256 294 | linux-386: sha256:bf60f10c15eb94a939810b72ceef44ab22e5e633185a38adb79da0a8fa26c421 295 | # https://get.helm.sh/helm-v2.16.2-linux-ppc64le.tar.gz.sha256 296 | linux-ppc64le: sha256:2f7ba883572d5de6775464491d2526993d2928f1b1c72594de30058cbd18a055 297 | # https://get.helm.sh/helm-v2.16.2-linux-s390x.tar.gz.sha256 298 | linux-s390x: sha256:c53f99abbec1b86ddcfa614b25369f6431bfb0a1c797bdb041d476a5a46b9df6 299 | # https://get.helm.sh/helm-v2.16.2-windows-amd64.zip.sha256 300 | windows-amd64: sha256:d1ca317b6aa6fb4e51f6ec1d3705570f767f2a034a873bf57a7229b0758cdfa0 301 | v2.16.3: 302 | # https://get.helm.sh/helm-v2.16.3-darwin-amd64.tar.gz.sha256 303 | darwin-amd64: sha256:df2a38d1c27c2d3e5ead63c872f5409e8bea091451db6bc6b81898b19981d4cb 304 | # https://get.helm.sh/helm-v2.16.3-linux-amd64.tar.gz.sha256 305 | linux-amd64: sha256:9678eb726d6870e8eded204190357a0f494ed9d1803781b4bb80dde6427b086e 306 | # https://get.helm.sh/helm-v2.16.3-linux-arm.tar.gz.sha256 307 | linux-arm: sha256:3f469d52845b067d8a6911eae3b01c677409d8251c0acfd9e8d8627e46c92a79 308 | # https://get.helm.sh/helm-v2.16.3-linux-arm64.tar.gz.sha256 309 | linux-arm64: sha256:98341cebb37d9a3c5ff552c239d5225b8c8d34923f5e035135b6e4797da4374c 310 | # https://get.helm.sh/helm-v2.16.3-linux-386.tar.gz.sha256 311 | linux-386: sha256:c028d0e1ae3ae1b52cb7a483ecb4fc82b10a96551559a6130bd59e70b2102f43 312 | # https://get.helm.sh/helm-v2.16.3-linux-ppc64le.tar.gz.sha256 313 | linux-ppc64le: sha256:b2d4ae4650568acf963f3bec5d8fde362ca3f523bd94e6f9430c5b15b639d034 314 | # https://get.helm.sh/helm-v2.16.3-linux-s390x.tar.gz.sha256 315 | linux-s390x: sha256:ec1e4f5995f93cc44e4feadf2652ef3534f2ec1cc03dc3193d7d74ded3d51616 316 | # https://get.helm.sh/helm-v2.16.3-windows-amd64.zip.sha256 317 | windows-amd64: sha256:8c6b7e28680b59a9c31b20ad5b1dca63775ecd566dddfa77f8062113b5875141 318 | v2.16.4: 319 | # https://get.helm.sh/helm-v2.16.4-darwin-amd64.tar.gz.sha256 320 | darwin-amd64: sha256:de71e1cb854e1cda02c077a99b48ca5de727b4c3bb58d3786f5a438b2a898ec0 321 | # https://get.helm.sh/helm-v2.16.4-linux-amd64.tar.gz.sha256 322 | linux-amd64: sha256:dad9d2ff275eda0a795269b54298af5209d55d2ae51ff8f5b64bcee92b31bb05 323 | # https://get.helm.sh/helm-v2.16.4-linux-arm.tar.gz.sha256 324 | linux-arm: sha256:22010d1b7111df9266c5a3dba79f481d87e01160214128c615509fb8fe7cfe46 325 | # https://get.helm.sh/helm-v2.16.4-linux-arm64.tar.gz.sha256 326 | linux-arm64: sha256:55ff9cf0af367f3d2df43251f6a145660d0bad5945e40e14499cf5a219c871d7 327 | # https://get.helm.sh/helm-v2.16.4-linux-386.tar.gz.sha256 328 | linux-386: sha256:8ba2a0401c69ec7545ec0840681f7f222740bd46c3a7fad52846c4ff5b31edff 329 | # https://get.helm.sh/helm-v2.16.4-linux-ppc64le.tar.gz.sha256 330 | linux-ppc64le: sha256:12657a5e56abfc609f774f031ce89bb0ab379d71aa2fee37fd3174bae0d9c1e3 331 | # https://get.helm.sh/helm-v2.16.4-linux-s390x.tar.gz.sha256 332 | linux-s390x: sha256:f2216d17299121d690ef4747a8235ff96e9f734c46eb322e324a5f119e830c4a 333 | # https://get.helm.sh/helm-v2.16.4-windows-amd64.zip.sha256 334 | windows-amd64: sha256:05e8cc97d86d2f833fb8ac0a1f2300801a99ddadb30ace5700720ae0746d6466 335 | v2.16.5: 336 | # https://get.helm.sh/helm-v2.16.5-darwin-amd64.tar.gz.sha256 337 | darwin-amd64: sha256:17dd88e4ff3d3d327388c42e6a684bed95e4330039356028f8e53c15af14c9f8 338 | # https://get.helm.sh/helm-v2.16.5-linux-amd64.tar.gz.sha256 339 | linux-amd64: sha256:7cd54f56f787d62fd7311d5ae2c26e31310d37d27e3622014e5c769bec008cab 340 | # https://get.helm.sh/helm-v2.16.5-linux-arm.tar.gz.sha256 341 | linux-arm: sha256:f35b694ba14555ea4124c558967e3947859282ec8d9c3a883c96bd1ae0ddc2b5 342 | # https://get.helm.sh/helm-v2.16.5-linux-arm64.tar.gz.sha256 343 | linux-arm64: sha256:ace7eef2a446886600e5ff7efec4a03bab85de0bef29c6af2fb4bfd96d54c31e 344 | # https://get.helm.sh/helm-v2.16.5-linux-386.tar.gz.sha256 345 | linux-386: sha256:826983a26770c06f745fa4c269d72d295b4623ec7a4ba0c59ff2c3bedbc0d889 346 | # https://get.helm.sh/helm-v2.16.5-linux-ppc64le.tar.gz.sha256 347 | linux-ppc64le: sha256:12953fb77130b4d7e328aab2ebbeed1354cfef3658f965f9e11922bd9bd49e72 348 | # https://get.helm.sh/helm-v2.16.5-linux-s390x.tar.gz.sha256 349 | linux-s390x: sha256:ca1ad9fcf86bcd87184c18107ec4db25abbffffddf19f14eeb0c0f6bd223efd4 350 | # https://get.helm.sh/helm-v2.16.5-windows-amd64.zip.sha256 351 | windows-amd64: sha256:4e47f54da9fce4bf4d7ea7041fea052b50ca6106945d9b75cfc2606a4f4ba652 352 | v2.16.6: 353 | # https://get.helm.sh/helm-v2.16.6-darwin-amd64.tar.gz.sha256 354 | darwin-amd64: sha256:7cccf13b3e821dda1e0ffa56ca6bec2648f2dae6fb8c12f22a9be2396698771f 355 | # https://get.helm.sh/helm-v2.16.6-linux-amd64.tar.gz.sha256 356 | linux-amd64: sha256:e38fea59bc382feb0f80322d582266465d76ab72acdc0079c2350cc3fd8a3f4c 357 | # https://get.helm.sh/helm-v2.16.6-linux-arm.tar.gz.sha256 358 | linux-arm: sha256:5c72eb00e5273297dbafb570607bcff8c59b06096d50ac0d74872528992f9d70 359 | # https://get.helm.sh/helm-v2.16.6-linux-arm64.tar.gz.sha256 360 | linux-arm64: sha256:115bef1e1171c3d71df3475ac4bc3ee7a43a5632591fafb6add797b65008026a 361 | # https://get.helm.sh/helm-v2.16.6-linux-386.tar.gz.sha256 362 | linux-386: sha256:72b5f80e97c7b385a01c525bdd2d9c10b7a7b472f99ca99d3e5f55a4ead9ac40 363 | # https://get.helm.sh/helm-v2.16.6-linux-ppc64le.tar.gz.sha256 364 | linux-ppc64le: sha256:1ca77ef89e0a619a94b8d52380498a413f39e718358e1f11b37980f5e064dbba 365 | # https://get.helm.sh/helm-v2.16.6-linux-s390x.tar.gz.sha256 366 | linux-s390x: sha256:a77d5021f46bcf1291fa05bc9a00a8d9916f2aeccafdc73dd9423576d9cff081 367 | # https://get.helm.sh/helm-v2.16.6-windows-amd64.zip.sha256 368 | windows-amd64: sha256:3ea3f33f02816d647068864d97233fe8ef529cf905ad0dcd4b4a3fb5770de903 369 | v2.16.7: 370 | # https://get.helm.sh/helm-v2.16.7-darwin-amd64.tar.gz.sha256 371 | darwin-amd64: sha256:ce9f40c6929688e04e5d6f7750de7ea855a024e00bda4f15745cfb8ff72fefde 372 | # https://get.helm.sh/helm-v2.16.7-linux-amd64.tar.gz.sha256 373 | linux-amd64: sha256:4afe48da420e4c3adcccf8484f27991834e3a3838668103199f274f4fa6f2df2 374 | # https://get.helm.sh/helm-v2.16.7-linux-arm.tar.gz.sha256 375 | linux-arm: sha256:390bff179dae4e8dcf829d83e326b8b461a08525a70c91d7cf69e071c5fe684f 376 | # https://get.helm.sh/helm-v2.16.7-linux-arm64.tar.gz.sha256 377 | linux-arm64: sha256:966f47419571c28e923481413553956b05f682f7486fb47a32c62adcf3c4c5f1 378 | # https://get.helm.sh/helm-v2.16.7-linux-386.tar.gz.sha256 379 | linux-386: sha256:ee716f2c86ace7735a726ad564a101fff32c74a1d23b45a2274ce090ed120877 380 | # https://get.helm.sh/helm-v2.16.7-linux-ppc64le.tar.gz.sha256 381 | linux-ppc64le: sha256:efeb65054fe8ca038233eeb36f4fc3941a15bac94d13b27affeca603854b8655 382 | # https://get.helm.sh/helm-v2.16.7-linux-s390x.tar.gz.sha256 383 | linux-s390x: sha256:0e9672ff248616491921e9ce3e770a3236c8cb46997ef8e63f078ff53ae814f5 384 | # https://get.helm.sh/helm-v2.16.7-windows-amd64.zip.sha256 385 | windows-amd64: sha256:c20e693ac5a7720d6c054f7c037531f05ef84ea732a667ded311f42051e26288 386 | v2.17.0: 387 | # https://get.helm.sh/helm-v2.17.0-darwin-amd64.tar.gz.sha256 388 | darwin-amd64: sha256:104dcda352985306d04d5d23aaf5252d00a85c083f3667fd013991d82f57ae83 389 | # https://get.helm.sh/helm-v2.17.0-linux-amd64.tar.gz.sha256 390 | linux-amd64: sha256:f3bec3c7c55f6a9eb9e6586b8c503f370af92fe987fcbf741f37707606d70296 391 | # https://get.helm.sh/helm-v2.17.0-linux-arm.tar.gz.sha256 392 | linux-arm: sha256:bf972150ba0b950119a3fe7ac9ed19d467c703fa552ba4ac79a0ad7f1f9e70c4 393 | # https://get.helm.sh/helm-v2.17.0-linux-arm64.tar.gz.sha256 394 | linux-arm64: sha256:c3ebe8fa04b4e235eb7a9ab030a98d3002f93ecb842f0a8741f98383a9493d7f 395 | # https://get.helm.sh/helm-v2.17.0-linux-386.tar.gz.sha256 396 | linux-386: sha256:843a0b92441a932be005f4c692f920b24014403c294856a396509c42c90f78aa 397 | # https://get.helm.sh/helm-v2.17.0-linux-ppc64le.tar.gz.sha256 398 | linux-ppc64le: sha256:4e4df66130bb46ab4aa21e01b24f93276dbd6ee6cf4f03218a328f1a79f5cb34 399 | # https://get.helm.sh/helm-v2.17.0-windows-amd64.zip.sha256 400 | windows-amd64: sha256:048147ef523f88753ba34170f2f6acd01ac6ec688c6f5973b0e5ffb0b113a232 401 | v3.0.0: 402 | # https://get.helm.sh/helm-v3.0.0-darwin-amd64.tar.gz.sha256 403 | darwin-amd64: sha256:b3070a2893209eb0dfc2d55224e9989b0ccd38aed514ddbc2f0dcae88bd7251a 404 | # https://get.helm.sh/helm-v3.0.0-linux-amd64.tar.gz.sha256 405 | linux-amd64: sha256:10e1fdcca263062b1d7b2cb93a924be1ef3dd6c381263d8151dd1a20a3d8c0dc 406 | # https://get.helm.sh/helm-v3.0.0-linux-arm.tar.gz.sha256 407 | linux-arm: sha256:ac43445ff6942c75f338a62ed851a6ee5e01927ae09dbf2a09d0ef1a091d0647 408 | # https://get.helm.sh/helm-v3.0.0-linux-arm64.tar.gz.sha256 409 | linux-arm64: sha256:24c0ba00178d43435c786904fefaa9eca0dbabc605b73b15a01e4c90800d5e5c 410 | # https://get.helm.sh/helm-v3.0.0-linux-386.tar.gz.sha256 411 | linux-386: sha256:6ec57f36822addd7fcb6f672d27707e9d9c6a4a85de96adcdfb82ef8d98307be 412 | # https://get.helm.sh/helm-v3.0.0-linux-ppc64le.tar.gz.sha256 413 | linux-ppc64le: sha256:d9d8c296e5f1cef4f5ae7cfe88fd9f08a4f519c9ddb91dd56d6b0f0635f41533 414 | # https://get.helm.sh/helm-v3.0.0-windows-amd64.zip.sha256 415 | windows-amd64: sha256:ea3da9092214a11ed3a21a0b7bbd738c25b63cdefbb90f1c921aab7bbcce62c6 416 | v3.0.1: 417 | # https://get.helm.sh/helm-v3.0.1-darwin-amd64.tar.gz.sha256 418 | darwin-amd64: sha256:4bffac2b5710fe80d2987efbc046a25968dbf3fb981c499e82fc21fe6178d2f3 419 | # https://get.helm.sh/helm-v3.0.1-linux-amd64.tar.gz.sha256 420 | linux-amd64: sha256:6de3337bb7683fd62f915d156cfc13c1cf73dc183bd39f2fb4644498c7595805 421 | # https://get.helm.sh/helm-v3.0.1-linux-arm.tar.gz.sha256 422 | linux-arm: sha256:f6548aedff76c6aae6e8a3d03923d7b70195de731a7acfc6ae775beb27f90759 423 | # https://get.helm.sh/helm-v3.0.1-linux-arm64.tar.gz.sha256 424 | linux-arm64: sha256:0cfeb6b1f3e8533b1f2ca66604a9c982e02d26fcd20f75c18bcfabfdf510f99d 425 | # https://get.helm.sh/helm-v3.0.1-linux-386.tar.gz.sha256 426 | linux-386: sha256:167a6d5d39480915d3b9736b02e1f9726c5b14218a5a7fcd0c3271ccd0d0aee3 427 | # https://get.helm.sh/helm-v3.0.1-linux-ppc64le.tar.gz.sha256 428 | linux-ppc64le: sha256:452921e758d131f44eebf002a7e2897b931a1a823649ae0ed0354d037b9479f0 429 | # https://get.helm.sh/helm-v3.0.1-windows-amd64.zip.sha256 430 | windows-amd64: sha256:60edef2180f94884e6a985c5cf920242fcc3fe8712f2d9768187b14816ed6bd9 431 | v3.0.2: 432 | # https://get.helm.sh/helm-v3.0.2-darwin-amd64.tar.gz.sha256 433 | darwin-amd64: sha256:05c7748da0ea8d5f85576491cd3c615f94063f20986fd82a0f5658ddc286cdb1 434 | # https://get.helm.sh/helm-v3.0.2-linux-amd64.tar.gz.sha256 435 | linux-amd64: sha256:c6b7aa7e4ffc66e8abb4be328f71d48c643cb8f398d95c74d075cfb348710e1d 436 | # https://get.helm.sh/helm-v3.0.2-linux-arm.tar.gz.sha256 437 | linux-arm: sha256:eb892b936e347382c2a33be72d60ad0072eeb0d03440cd9cb94ec7d313353de4 438 | # https://get.helm.sh/helm-v3.0.2-linux-arm64.tar.gz.sha256 439 | linux-arm64: sha256:731142343b4994c8051d3d195c64abd137949e49143e5a06b4af0e4e816115b9 440 | # https://get.helm.sh/helm-v3.0.2-linux-386.tar.gz.sha256 441 | linux-386: sha256:b7aaa51f7989e1fa4bc5cbf56abff51144db46fb20073c8dd49cc5e9f83e1069 442 | # https://get.helm.sh/helm-v3.0.2-linux-ppc64le.tar.gz.sha256 443 | linux-ppc64le: sha256:2e2847c764d618b441ca711c2e803b357c2d0062435314562319699339548220 444 | # https://get.helm.sh/helm-v3.0.2-windows-amd64.zip.sha256 445 | windows-amd64: sha256:b76dabf4e25166ebf1db7337145b02cc986fcfcee06e195df983c39c36722f46 446 | v3.0.3: 447 | # https://get.helm.sh/helm-v3.0.3-darwin-amd64.tar.gz.sha256 448 | darwin-amd64: sha256:5e27bc6ecf838ed28a6a480ee14e6bec137b467a56f427dbc3cf995f9bdcf85c 449 | # https://get.helm.sh/helm-v3.0.3-linux-amd64.tar.gz.sha256 450 | linux-amd64: sha256:fc75d62bafec2c3addc87b715ce2512820375ab812e6647dc724123b616586d6 451 | # https://get.helm.sh/helm-v3.0.3-linux-arm.tar.gz.sha256 452 | linux-arm: sha256:f59c68eb8e249131be10f5c1a95065135b776c5bf47b41e0e52f58f5574a2802 453 | # https://get.helm.sh/helm-v3.0.3-linux-arm64.tar.gz.sha256 454 | linux-arm64: sha256:85e304eaa57d100c038eb362f129720d5e59b237b00fed2711fea4945b2069a3 455 | # https://get.helm.sh/helm-v3.0.3-linux-386.tar.gz.sha256 456 | linux-386: sha256:c9249513593a44d9d828e4b6aabf057d16ebcf2753134a65ceb0c06b84c86a60 457 | # https://get.helm.sh/helm-v3.0.3-linux-ppc64le.tar.gz.sha256 458 | linux-ppc64le: sha256:8ac0bfe18b1852b74a718d5a0f739b26968ccf723d2864ad8ad095e1acc8817e 459 | # https://get.helm.sh/helm-v3.0.3-windows-amd64.zip.sha256 460 | windows-amd64: sha256:c52065cb70ad9d88b195638e1591db64852f4ad150448e06fca907d47a07fe4c 461 | v3.1.0: 462 | # https://get.helm.sh/helm-v3.1.0-darwin-amd64.tar.gz.sha256 463 | darwin-amd64: sha256:aacb6ce8ffa08eebc4e4a570226675f53963c86feb8386d46abf4b8871066c92 464 | # https://get.helm.sh/helm-v3.1.0-linux-amd64.tar.gz.sha256 465 | linux-amd64: sha256:f0fd9fe2b0e09dc9ed190239fce892a468cbb0a2a8fffb9fe846f893c8fd09de 466 | # https://get.helm.sh/helm-v3.1.0-linux-arm.tar.gz.sha256 467 | linux-arm: sha256:cb2824c01860196fab8cd6ececd04ff78e9c6606d175e6cd5f41e7d99881795b 468 | # https://get.helm.sh/helm-v3.1.0-linux-arm64.tar.gz.sha256 469 | linux-arm64: sha256:1ba32db0600db61d8ace7a3afbaf7b045e16c0aab2a054dd9ec8e02755c07674 470 | # https://get.helm.sh/helm-v3.1.0-linux-386.tar.gz.sha256 471 | linux-386: sha256:9bb03099968f16c20298773fe5e466fa66206bf0f125ea656e1722cd86f32439 472 | # https://get.helm.sh/helm-v3.1.0-linux-ppc64le.tar.gz.sha256 473 | linux-ppc64le: sha256:6ba4a2a6690c0224ab513971e6c56243c60ffbcc3ba4f68960a693b070bd5f71 474 | # https://get.helm.sh/helm-v3.1.0-windows-amd64.zip.sha256 475 | windows-amd64: sha256:f6a6ee20bd216beb2f0195f083b03d43b8801e885a483011807824bd0915b835 476 | v3.1.1: 477 | # https://get.helm.sh/helm-v3.1.1-darwin-amd64.tar.gz.sha256 478 | darwin-amd64: sha256:2ce00e6c44ba18fbcbec21c493476e919128710d480789bb35bd228ae695cd66 479 | # https://get.helm.sh/helm-v3.1.1-linux-amd64.tar.gz.sha256 480 | linux-amd64: sha256:cdd7ad304e2615c583dde0ffb0cb38fc1336cd7ce8ff3b5f237434dcadb28c98 481 | # https://get.helm.sh/helm-v3.1.1-linux-arm.tar.gz.sha256 482 | linux-arm: sha256:2ac8569d39cff39a0063e349358c176b89c04bcf19c9c0e1f4375c41ede47146 483 | # https://get.helm.sh/helm-v3.1.1-linux-arm64.tar.gz.sha256 484 | linux-arm64: sha256:fa57340eff748a8778847ed7bcc06191165fdeb4367f85cf74b84db88eaedb7b 485 | # https://get.helm.sh/helm-v3.1.1-linux-386.tar.gz.sha256 486 | linux-386: sha256:19e361a263b40fb8f72ffde007077532807269af79f727f21dba9fac6b69b063 487 | # https://get.helm.sh/helm-v3.1.1-linux-ppc64le.tar.gz.sha256 488 | linux-ppc64le: sha256:504897ee3bbf37b5a3c5ec1407af8b57972f1342e14c9ae28bb919556a3ccc4b 489 | # https://get.helm.sh/helm-v3.1.1-windows-amd64.zip.sha256 490 | windows-amd64: sha256:5efc1c7bdea42a17a1ea197a3a2e47c8f1b0a5464894b98ae73a4c0620163040 491 | v3.1.2: 492 | # https://get.helm.sh/helm-v3.1.2-darwin-amd64.tar.gz.sha256 493 | darwin-amd64: sha256:92b10652b05a150e76995e08910a662c200a8179cfdb16bd51766d0d5ecc981a 494 | # https://get.helm.sh/helm-v3.1.2-linux-amd64.tar.gz.sha256 495 | linux-amd64: sha256:e6be589df85076108c33e12e60cfb85dcd82c5d756a6f6ebc8de0ee505c9fd4c 496 | # https://get.helm.sh/helm-v3.1.2-linux-arm.tar.gz.sha256 497 | linux-arm: sha256:49fada092d28c81cc574d98dc91dee46dbdca2b1f3f286eef17bc9ff87089e9b 498 | # https://get.helm.sh/helm-v3.1.2-linux-arm64.tar.gz.sha256 499 | linux-arm64: sha256:9d5fd03616d6aa211e62723fbe9adb650eb8fe51f939364e877d843cb276cb25 500 | # https://get.helm.sh/helm-v3.1.2-linux-386.tar.gz.sha256 501 | linux-386: sha256:14c6e242267db25d7f67ebf2a67865173713db0f3f4b8d14bdb3e155721206b3 502 | # https://get.helm.sh/helm-v3.1.2-linux-ppc64le.tar.gz.sha256 503 | linux-ppc64le: sha256:39008255a9d0ad72668752fc931dc408d5842b432814076b7a5cb442ffc3476f 504 | # https://get.helm.sh/helm-v3.1.2-windows-amd64.zip.sha256 505 | windows-amd64: sha256:708baf9935d6598ffec5e63be68d53b76f26a132b8c1b402259608b0fc76a2c1 506 | v3.2.0: 507 | # https://get.helm.sh/helm-v3.2.0-darwin-amd64.tar.gz.sha256 508 | darwin-amd64: sha256:1d456ebcba589b9f39e5a6120d3a437a78ddcef074805bb95cbeb84c198d2bde 509 | # https://get.helm.sh/helm-v3.2.0-linux-amd64.tar.gz.sha256 510 | linux-amd64: sha256:4c3fd562e64005786ac8f18e7334054a24da34ec04bbd769c206b03b8ed6e457 511 | # https://get.helm.sh/helm-v3.2.0-linux-arm.tar.gz.sha256 512 | linux-arm: sha256:9919a982340c09b73e066645964645d77af93ba2656e64dc6e130bf6001211dd 513 | # https://get.helm.sh/helm-v3.2.0-linux-arm64.tar.gz.sha256 514 | linux-arm64: sha256:cd11f0ed12a658f3b78392528814350a508d2c53d8da7f04145909e94bda10f1 515 | # https://get.helm.sh/helm-v3.2.0-linux-386.tar.gz.sha256 516 | linux-386: sha256:79a08f74bd1e56db0a78ad4b3b7bcffa92e47ce7e5e8effe73a28602e834e191 517 | # https://get.helm.sh/helm-v3.2.0-linux-ppc64le.tar.gz.sha256 518 | linux-ppc64le: sha256:8ec4c8e6ecc3c7c826c29da7a7c7cf51093eb5692577d05a54a7d354ad775341 519 | # https://get.helm.sh/helm-v3.2.0-windows-amd64.zip.sha256 520 | windows-amd64: sha256:241a9d8f7bac2c03688e04706a784d3b26af463b73d8ad99ea77f54cf05a1834 521 | v3.2.1: 522 | # https://get.helm.sh/helm-v3.2.1-darwin-amd64.tar.gz.sha256 523 | darwin-amd64: sha256:983c4f167060b3892a42f353c7891cabac36ec49f6042eae1046bd8a258b8a14 524 | # https://get.helm.sh/helm-v3.2.1-linux-amd64.tar.gz.sha256 525 | linux-amd64: sha256:018f9908cb950701a5d59e757653a790c66d8eda288625dbb185354ca6f41f6b 526 | # https://get.helm.sh/helm-v3.2.1-linux-arm.tar.gz.sha256 527 | linux-arm: sha256:b84708ac114669b2a6d81c84f43793268811f19c279b355d6ef00e5e208a9e9d 528 | # https://get.helm.sh/helm-v3.2.1-linux-arm64.tar.gz.sha256 529 | linux-arm64: sha256:7200fb4582345f521d56daed56112d667fef25c48569f574fab3f9cb04c5b176 530 | # https://get.helm.sh/helm-v3.2.1-linux-386.tar.gz.sha256 531 | linux-386: sha256:f62bd14ea97d78ac00708c5c51f065d5bb9ae25119a7a780f79d3ba45ba531c6 532 | # https://get.helm.sh/helm-v3.2.1-linux-ppc64le.tar.gz.sha256 533 | linux-ppc64le: sha256:324466498e6f6300643ddfff2b9e3c796e731cccf442850868c317025cdb71f5 534 | # https://get.helm.sh/helm-v3.2.1-windows-amd64.zip.sha256 535 | windows-amd64: sha256:dbd30c03f5ba110348a20ffb5ed8770080757937c157987cce59287507af79dd 536 | v3.2.2: 537 | # https://get.helm.sh/helm-v3.2.2-darwin-amd64.tar.gz.sha256 538 | darwin-amd64: sha256:8815169407011ef989a4b1b95d83f58353ae3dbe17f39d3b927ec95b57fc4aa3 539 | # https://get.helm.sh/helm-v3.2.2-linux-amd64.tar.gz.sha256 540 | linux-amd64: sha256:305cc92bc21c902a5337a9e1a63316ef67f6e06000d878cf22eb504c6750745c 541 | # https://get.helm.sh/helm-v3.2.2-linux-arm.tar.gz.sha256 542 | linux-arm: sha256:5ea04e597ee786747b22df951ed8894ebb3e1f90d5da48703452d7a766b0f09a 543 | # https://get.helm.sh/helm-v3.2.2-linux-arm64.tar.gz.sha256 544 | linux-arm64: sha256:72ed5d860972a6ee52f3777baf96229dd218dae92c342cbe159333051ee30e81 545 | # https://get.helm.sh/helm-v3.2.2-linux-386.tar.gz.sha256 546 | linux-386: sha256:50afdeae6cf309993ffd3e36e771179803646123eb697fab4919e74efe255fe9 547 | # https://get.helm.sh/helm-v3.2.2-linux-ppc64le.tar.gz.sha256 548 | linux-ppc64le: sha256:6b1e5377c5665c6908f014523f622d8db365f639274bfcea30f674de531dc286 549 | # https://get.helm.sh/helm-v3.2.2-windows-amd64.zip.sha256 550 | windows-amd64: sha256:8b28feea08d6b480419b088ba38242ce2dbc23e9a880d012ab32371e256fdd00 551 | v3.2.3: 552 | # https://get.helm.sh/helm-v3.2.3-darwin-amd64.tar.gz.sha256 553 | darwin-amd64: sha256:3062b35ec858b55810623f105eaa092a13676151d494cc8b1f0798b7354f555f 554 | # https://get.helm.sh/helm-v3.2.3-linux-amd64.tar.gz.sha256 555 | linux-amd64: sha256:3156e4fe5f034e5b127cf165d61a8a1c48eb7a73b14689b273de5e6117df6fe2 556 | # https://get.helm.sh/helm-v3.2.3-linux-arm.tar.gz.sha256 557 | linux-arm: sha256:60d7c50ef798468bb63931b55bddf2099c368d54c32b13cb3976bb8d8795e40f 558 | # https://get.helm.sh/helm-v3.2.3-linux-arm64.tar.gz.sha256 559 | linux-arm64: sha256:90b4f11affc109e040d1d6e1f39424fcf14fcf5ced4f212db4c2d878e915ebfc 560 | # https://get.helm.sh/helm-v3.2.3-linux-386.tar.gz.sha256 561 | linux-386: sha256:ad07d09c640770e35c3849dc89d48cb295d698e6de9be5dd683f30a9847aadec 562 | # https://get.helm.sh/helm-v3.2.3-linux-ppc64le.tar.gz.sha256 563 | linux-ppc64le: sha256:30167c9393028ce11f004f6cf3ec2173b46dcdd4c66ce2c0ec96ceca8cc8c27e 564 | # https://get.helm.sh/helm-v3.2.3-windows-amd64.zip.sha256 565 | windows-amd64: sha256:c8c4b1ed6d96faa7ed45066ad4fef073ad1be49375dfad61e036928b09a22e06 566 | v3.2.4: 567 | # https://get.helm.sh/helm-v3.2.4-darwin-amd64.tar.gz.sha256 568 | darwin-amd64: sha256:603bc2da184b69e6303a15baf037f55f44de7359d0ba84151459ddc7a20851a8 569 | # https://get.helm.sh/helm-v3.2.4-linux-amd64.tar.gz.sha256 570 | linux-amd64: sha256:8eb56cbb7d0da6b73cd8884c6607982d0be8087027b8ded01d6b2759a72e34b1 571 | # https://get.helm.sh/helm-v3.2.4-linux-arm.tar.gz.sha256 572 | linux-arm: sha256:03a06a60e93ac5cfc2d3659c1705a356f0b39c49f6939005697ac70cd60c307d 573 | # https://get.helm.sh/helm-v3.2.4-linux-arm64.tar.gz.sha256 574 | linux-arm64: sha256:3087b8d7adf7a8310d2840a72194c79d0e89f11ae2a14118368eb91abf8ad078 575 | # https://get.helm.sh/helm-v3.2.4-linux-386.tar.gz.sha256 576 | linux-386: sha256:d43ccb9cf2fea7b743170a5dff6a79a06a91456447e2bc88662a795cfb6b6af1 577 | # https://get.helm.sh/helm-v3.2.4-linux-ppc64le.tar.gz.sha256 578 | linux-ppc64le: sha256:035e9645f5a338c28c02a4523bfaccb366612dd74a771863e71d37687a72c146 579 | # https://get.helm.sh/helm-v3.2.4-windows-amd64.zip.sha256 580 | windows-amd64: sha256:d42ba3b8f1ff5eecba3074240127323b612380aa343b62b5998cc291e65ddcc3 581 | v3.3.0: 582 | # https://get.helm.sh/helm-v3.3.0-darwin-amd64.tar.gz.sha256 583 | darwin-amd64: sha256:3399430b0fdfa8c840e77ddb4410d762ae64f19924663dbdd93bcd0e22704e0b 584 | # https://get.helm.sh/helm-v3.3.0-linux-amd64.tar.gz.sha256 585 | linux-amd64: sha256:ff4ac230b73a15d66770a65a037b07e08ccbce6833fbd03a5b84f06464efea45 586 | # https://get.helm.sh/helm-v3.3.0-linux-arm.tar.gz.sha256 587 | linux-arm: sha256:59d05ba1a8895eb9d0eae569cfc2d38ecd245d2bf3cd0bccd02f933ab0498175 588 | # https://get.helm.sh/helm-v3.3.0-linux-arm64.tar.gz.sha256 589 | linux-arm64: sha256:8c64c74e69320ad4364bad29a712d8a737d9df8cae10d1ad08e6a2e513479981 590 | # https://get.helm.sh/helm-v3.3.0-linux-386.tar.gz.sha256 591 | linux-386: sha256:35a89ac6791f4596673f736a2cca551325708a69a27caef17ac6c46fdffff613 592 | # https://get.helm.sh/helm-v3.3.0-linux-ppc64le.tar.gz.sha256 593 | linux-ppc64le: sha256:93e7e629c65562ed7026e1889cf32428c6a53d39edea42e8f515abe0bfd92b49 594 | # https://get.helm.sh/helm-v3.3.0-windows-amd64.zip.sha256 595 | windows-amd64: sha256:1bac19768e853ada10b9ee7896678a5a7352cc06546c5ea3d47652fcea1033c3 596 | v3.3.1: 597 | # https://get.helm.sh/helm-v3.3.1-darwin-amd64.tar.gz.sha256 598 | darwin-amd64: sha256:ab999d5a5e701aa3b75f4b10698d957e75b482cb0fe3c7bb283ac8e1ac602c26 599 | # https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz.sha256 600 | linux-amd64: sha256:81e3974927b4f76e9f679d1f6d6b45748f8c84081a571741d48b2902d816e14c 601 | # https://get.helm.sh/helm-v3.3.1-linux-arm.tar.gz.sha256 602 | linux-arm: sha256:8b36dc785d90cad4c45cd49da60d7542a34be9d8e21f700c79df8fb2792416ad 603 | # https://get.helm.sh/helm-v3.3.1-linux-arm64.tar.gz.sha256 604 | linux-arm64: sha256:87d302b754b6f702f4308c2aff190280ff23cc21c35660ef93d78c39158d796f 605 | # https://get.helm.sh/helm-v3.3.1-linux-386.tar.gz.sha256 606 | linux-386: sha256:758a459acbef027ab0dcd20ecc4c7ac879225e7c872c66dadfbc91be5b9e99ba 607 | # https://get.helm.sh/helm-v3.3.1-linux-ppc64le.tar.gz.sha256 608 | linux-ppc64le: sha256:5bd56525be0199f40743a08b3511945a2cfee204ea23ad2841e9c8382fb2eb0c 609 | # https://get.helm.sh/helm-v3.3.1-windows-amd64.zip.sha256 610 | windows-amd64: sha256:ee175565a81d1288769280b00ff1b78a77b225001471d0dd76117f909e707447 611 | v3.3.2: 612 | # https://get.helm.sh/helm-v3.3.2-darwin-amd64.tar.gz.sha256 613 | darwin-amd64: sha256:eb86998f8db4e59fe2336ce78b3dc3b3ba5346d81b622dc0a1744bf97c2df5f3 614 | # https://get.helm.sh/helm-v3.3.2-linux-amd64.tar.gz.sha256 615 | linux-amd64: sha256:cf82fe0ed1675030b203a9a3575b1a1bc4b0f5ce4584ce2cd7f75cd093cad259 616 | # https://get.helm.sh/helm-v3.3.2-linux-arm.tar.gz.sha256 617 | linux-arm: sha256:0a8a9dae0526b527dacd4d3e0fcff06973ba492273a9ddc1c07f953de781683b 618 | # https://get.helm.sh/helm-v3.3.2-linux-arm64.tar.gz.sha256 619 | linux-arm64: sha256:8a3d4624efea2a65ec09c8fce82df3dbc09867e5c8c6a7ef80c16dfdb9278877 620 | # https://get.helm.sh/helm-v3.3.2-linux-386.tar.gz.sha256 621 | linux-386: sha256:355a8a77dcd384c11fa0d710eff0459716451a2f1f6d2f56da2aad9c964ca192 622 | # https://get.helm.sh/helm-v3.3.2-linux-ppc64le.tar.gz.sha256 623 | linux-ppc64le: sha256:10d46db09900d335056ff15009ac60c6ba20859bff01b83214ca1927a089452b 624 | # https://get.helm.sh/helm-v3.3.2-windows-amd64.zip.sha256 625 | windows-amd64: sha256:10cbf1b282dbbbbf138002747a8665888b08c3d911c6351bdcb48482fa356a03 626 | v3.3.3: 627 | # https://get.helm.sh/helm-v3.3.3-darwin-amd64.tar.gz.sha256 628 | darwin-amd64: sha256:6acf1640d59a273996b67ba9e3d8e636254aa3e34dd423edcce9ac77b9727330 629 | # https://get.helm.sh/helm-v3.3.3-linux-amd64.tar.gz.sha256 630 | linux-amd64: sha256:246d58b6b353e63ae8627415a7340089015e3eb542ff7b5ce124b0b1409369cc 631 | # https://get.helm.sh/helm-v3.3.3-linux-arm.tar.gz.sha256 632 | linux-arm: sha256:94ddce8c497999113b31d7320ed5d2c61b25bb0066d95d81135135f73dbe5bf2 633 | # https://get.helm.sh/helm-v3.3.3-linux-arm64.tar.gz.sha256 634 | linux-arm64: sha256:e8b2695185188e956a6ccbddf16f2d6edb37507dd51be01317308852d4902769 635 | # https://get.helm.sh/helm-v3.3.3-linux-386.tar.gz.sha256 636 | linux-386: sha256:2d08fa20ac901ae3903fc0d3f5ae017ecf4a58d7ea9f9e0bf8a50b21b76dcb42 637 | # https://get.helm.sh/helm-v3.3.3-linux-ppc64le.tar.gz.sha256 638 | linux-ppc64le: sha256:359ae5c7f7289c80e369e0e8bdc56de7e4943a4f26440541c3f9fdea458eb500 639 | # https://get.helm.sh/helm-v3.3.3-windows-amd64.zip.sha256 640 | windows-amd64: sha256:7cf4f1e830e4a8f8af8b92140fef37976ab75194d1b60af5182619a4b31049e0 641 | v3.3.4: 642 | # https://get.helm.sh/helm-v3.3.4-darwin-amd64.tar.gz.sha256 643 | darwin-amd64: sha256:9fffc847c61da0e06319788d3998ea173eb86c1cc5600ac3ada8d0d40c911793 644 | # https://get.helm.sh/helm-v3.3.4-linux-amd64.tar.gz.sha256 645 | linux-amd64: sha256:b664632683c36446deeb85c406871590d879491e3de18978b426769e43a1e82c 646 | # https://get.helm.sh/helm-v3.3.4-linux-arm.tar.gz.sha256 647 | linux-arm: sha256:9da6cc39a796f85b6c4e6d48fd8e4888f1003bfb7a193bb6c427cdd752ad40bb 648 | # https://get.helm.sh/helm-v3.3.4-linux-arm64.tar.gz.sha256 649 | linux-arm64: sha256:bdd00b8ff422171b4be5b649a42e5261394a89d7ea57944005fc34d34d1f8160 650 | # https://get.helm.sh/helm-v3.3.4-linux-386.tar.gz.sha256 651 | linux-386: sha256:2c14d4d944c94f4487fa15ae99d974304554850a8decd726419e6a8cb0f9038c 652 | # https://get.helm.sh/helm-v3.3.4-linux-ppc64le.tar.gz.sha256 653 | linux-ppc64le: sha256:fed9553cd7459f0c37dc99b8566bd397b6893e48dc63f154e63eb8919179b99a 654 | # https://get.helm.sh/helm-v3.3.4-windows-amd64.zip.sha256 655 | windows-amd64: sha256:001f38788ed7ecfe336881b991d46bfd73596380185dc70557a1e352f27c0b22 656 | v3.4.0: 657 | # https://get.helm.sh/helm-v3.4.0-darwin-amd64.tar.gz.sha256 658 | darwin-amd64: sha256:e1588ee03cfa3f2140199acafc29aff95960a4f593b8f4ca8fc0a6be169827bf 659 | # https://get.helm.sh/helm-v3.4.0-linux-amd64.tar.gz.sha256 660 | linux-amd64: sha256:270acb0f085b72ec28aee894c7443739271758010323d72ced0e92cd2c96ffdb 661 | # https://get.helm.sh/helm-v3.4.0-linux-arm.tar.gz.sha256 662 | linux-arm: sha256:ed79f27756426832774c27608aede6f25a636795fa0b4913a827a99b0892f867 663 | # https://get.helm.sh/helm-v3.4.0-linux-arm64.tar.gz.sha256 664 | linux-arm64: sha256:83cd7a30f4c5ce83eb2afb4974777bf99bb74a5f587c85774d747e3d32e3cb48 665 | # https://get.helm.sh/helm-v3.4.0-linux-386.tar.gz.sha256 666 | linux-386: sha256:1fe95d89397d9a2d92bc303a222ab71e342a4971193321fb1b39ba06cf8305b3 667 | # https://get.helm.sh/helm-v3.4.0-linux-ppc64le.tar.gz.sha256 668 | linux-ppc64le: sha256:85e34eca3db0357fed69affe3f37fa5d6e3a4ba21f05ab291ee1cf3a773a381f 669 | # https://get.helm.sh/helm-v3.4.0-windows-amd64.zip.sha256 670 | windows-amd64: sha256:bd56473202394e20b80dafc85b4ce40c13c3159464cd2d164fc224b86fc9cf78 671 | v3.4.1: 672 | # https://get.helm.sh/helm-v3.4.1-darwin-amd64.tar.gz.sha256 673 | darwin-amd64: sha256:71d213d63e1b727d6640c4420aee769316f0a93168b96073d166edcd3a425b3d 674 | # https://get.helm.sh/helm-v3.4.1-linux-amd64.tar.gz.sha256 675 | linux-amd64: sha256:538f85b4b73ac6160b30fd0ab4b510441aa3fa326593466e8bf7084a9c288420 676 | # https://get.helm.sh/helm-v3.4.1-linux-arm.tar.gz.sha256 677 | linux-arm: sha256:00617f17981d4d21ffc1db549a46308dc59d0cc0fa9e692c576e7b2f6ef306d0 678 | # https://get.helm.sh/helm-v3.4.1-linux-arm64.tar.gz.sha256 679 | linux-arm64: sha256:639b2a4692e215e6c172739bd08da03d1fdb204e010cfb72f3ea822b0ba29825 680 | # https://get.helm.sh/helm-v3.4.1-linux-386.tar.gz.sha256 681 | linux-386: sha256:2620607b68adbdae03b7224839562946aeedc8da00bfb148b2f21cd901d85787 682 | # https://get.helm.sh/helm-v3.4.1-linux-ppc64le.tar.gz.sha256 683 | linux-ppc64le: sha256:5083d59b53afcd10774781d58999c5dd21cd624616e6a115dec74499c71bdd02 684 | # https://get.helm.sh/helm-v3.4.1-windows-amd64.zip.sha256 685 | windows-amd64: sha256:67f19f370b1f47d71cbd05c288d7adf627921e7a6dc57c6e713c389569ad1c34 686 | v3.4.2: 687 | # https://get.helm.sh/helm-v3.4.2-darwin-amd64.tar.gz.sha256 688 | darwin-amd64: sha256:c33b7ee72b0006f23b33f5032b531dd609fff7b08a4324f9ba07722a4f3fec9a 689 | # https://get.helm.sh/helm-v3.4.2-linux-amd64.tar.gz.sha256 690 | linux-amd64: sha256:cacde7768420dd41111a4630e047c231afa01f67e49cc0c6429563e024da4b98 691 | # https://get.helm.sh/helm-v3.4.2-linux-arm.tar.gz.sha256 692 | linux-arm: sha256:feafaebe64f0fa4228d5b2014defb462d1898fcddbd33a1c34531cbad24e159f 693 | # https://get.helm.sh/helm-v3.4.2-linux-arm64.tar.gz.sha256 694 | linux-arm64: sha256:486cad35b9ac1da88781847f2fcaaaed729e44705eb42593322e4b52d0f2c1a1 695 | # https://get.helm.sh/helm-v3.4.2-linux-386.tar.gz.sha256 696 | linux-386: sha256:c7a4872d7409bc2840a2c82380b2abbd94b69b4264fad08ed8bb2a4cc617118e 697 | # https://get.helm.sh/helm-v3.4.2-linux-ppc64le.tar.gz.sha256 698 | linux-ppc64le: sha256:52062596e5625a3238c6b967d31cf6ec1f0fd5926d2443a1179aeb91ed14d539 699 | # https://get.helm.sh/helm-v3.4.2-windows-amd64.zip.sha256 700 | windows-amd64: sha256:76ff3f8c21c9af5b80abdd87ec07629ad88dbfe6206decc4d3024f26398554b9 701 | v3.5.0: 702 | # https://get.helm.sh/helm-v3.5.0-darwin-amd64.tar.gz.sha256 703 | darwin-amd64: sha256:53378d8de087395ece3876795111a8077f2451f080ec6150d777cc3105214520 704 | # https://get.helm.sh/helm-v3.5.0-linux-amd64.tar.gz.sha256 705 | linux-amd64: sha256:3fff0354d5fba4c73ebd5db59a59db72f8a5bbe1117a0b355b0c2983e98db95b 706 | # https://get.helm.sh/helm-v3.5.0-linux-arm.tar.gz.sha256 707 | linux-arm: sha256:ca8792da269b72235987ea7245d1450a859b2c0658f591737d74b6c56cd9b1fa 708 | # https://get.helm.sh/helm-v3.5.0-linux-arm64.tar.gz.sha256 709 | linux-arm64: sha256:87811b648ed9f4c84d3cb67bbea9b666bb7f6dd0ff6aca148b65f91058f73953 710 | # https://get.helm.sh/helm-v3.5.0-linux-386.tar.gz.sha256 711 | linux-386: sha256:7461c478d25870422e3cb4198bc3b42ffdb0961e05cf05967ada35ccfd2d9a0f 712 | # https://get.helm.sh/helm-v3.5.0-linux-ppc64le.tar.gz.sha256 713 | linux-ppc64le: sha256:a0e0e4c2090789a3a86b144e84626fa577e8e692247b87261be985bda324d044 714 | # https://get.helm.sh/helm-v3.5.0-windows-amd64.zip.sha256 715 | windows-amd64: sha256:8253aa42b747a17fa868b00bfaf8b55f26170bcfc6cdb1b909942e01537a756c 716 | v3.5.1: 717 | # https://get.helm.sh/helm-v3.5.1-darwin-amd64.tar.gz.sha256 718 | darwin-amd64: sha256:c9b09c7184d95ec6cb3eaddafdc5268688b54359e47d912b0c54068784d8c7eb 719 | # https://get.helm.sh/helm-v3.5.1-linux-amd64.tar.gz.sha256 720 | linux-amd64: sha256:cad8f2f55a87cfd4d79312625c6af62c1e22eb1dab750f00aa1d394c601a2e6b 721 | # https://get.helm.sh/helm-v3.5.1-linux-arm.tar.gz.sha256 722 | linux-arm: sha256:0b86a5a68df7376484babb6d7ffe1bae36012b4d65f1bcddb4255fb3bbe811db 723 | # https://get.helm.sh/helm-v3.5.1-linux-arm64.tar.gz.sha256 724 | linux-arm64: sha256:d0ada80576f8016d1cc38a06d225a4379a53e88e3e26b417e6de5db05a090ce4 725 | # https://get.helm.sh/helm-v3.5.1-linux-386.tar.gz.sha256 726 | linux-386: sha256:f446ed424de9a177a4d5bb4a81f5086738527ab6aaded10243f28af9fc4d52cb 727 | # https://get.helm.sh/helm-v3.5.1-linux-ppc64le.tar.gz.sha256 728 | linux-ppc64le: sha256:10ba07fc773a241037e4f8d0b653000a357edd8e7819ae2e4101caa302c23426 729 | # https://get.helm.sh/helm-v3.5.1-windows-amd64.zip.sha256 730 | windows-amd64: sha256:793298194038eacce3b0a2e5cefcf104ae3f595740f03f5894e0484e2955d5a9 731 | v3.5.2: 732 | # https://get.helm.sh/helm-v3.5.2-darwin-amd64.tar.gz.sha256 733 | darwin-amd64: sha256:68040e9a2f147a92c2f66ce009069826df11f9d1e1c6b78c7457066080ad3229 734 | # https://get.helm.sh/helm-v3.5.2-linux-amd64.tar.gz.sha256 735 | linux-amd64: sha256:01b317c506f8b6ad60b11b1dc3f093276bb703281cb1ae01132752253ec706a2 736 | # https://get.helm.sh/helm-v3.5.2-linux-arm.tar.gz.sha256 737 | linux-arm: sha256:98d090fc1769f5bf7451c15f6ed5a173a1ce5175eca32070ac19064d36470f1b 738 | # https://get.helm.sh/helm-v3.5.2-linux-arm64.tar.gz.sha256 739 | linux-arm64: sha256:126a72e2b209194fd2735861f0cf8bd5b5d1386eedd6aed6e0e050dca80d493e 740 | # https://get.helm.sh/helm-v3.5.2-linux-386.tar.gz.sha256 741 | linux-386: sha256:c237ea10af6227c71cff745b3ed3f5653ca1cd5887903ae078ab1b62fbdd45ba 742 | # https://get.helm.sh/helm-v3.5.2-linux-ppc64le.tar.gz.sha256 743 | linux-ppc64le: sha256:1940d66a05fcf06cc52f55011b81d9c075c234644336d28c14a501f5ca15350d 744 | # https://get.helm.sh/helm-v3.5.2-windows-amd64.zip.sha256 745 | windows-amd64: sha256:079711eeadd3276da0d946a116f4dc08d58b015ca1874d7b3f3cd633e079589e 746 | v3.5.3: 747 | # https://get.helm.sh/helm-v3.5.3-darwin-amd64.tar.gz.sha256 748 | darwin-amd64: sha256:451ad70dfe286e3979c78ecf7074f4749d93644da8aa2cc778e2f969771f1794 749 | # https://get.helm.sh/helm-v3.5.3-linux-amd64.tar.gz.sha256 750 | linux-amd64: sha256:2170a1a644a9e0b863f00c17b761ce33d4323da64fc74562a3a6df2abbf6cd70 751 | # https://get.helm.sh/helm-v3.5.3-linux-arm.tar.gz.sha256 752 | linux-arm: sha256:fd9c1e1eaa6d8d2c9df6027524e80b8bfde0ea49de5f324845256b3e9cc2edb0 753 | # https://get.helm.sh/helm-v3.5.3-linux-arm64.tar.gz.sha256 754 | linux-arm64: sha256:e1348d94ce4caace43689ee2dfa5f8bcd8687c12053d9c13d79875b65d6b72aa 755 | # https://get.helm.sh/helm-v3.5.3-linux-386.tar.gz.sha256 756 | linux-386: sha256:e1458691d6a2da96a5d7ab10de4deaa2166d3bc6d6bb3303377278719ae4da95 757 | # https://get.helm.sh/helm-v3.5.3-linux-ppc64le.tar.gz.sha256 758 | linux-ppc64le: sha256:579f903f0579d156a7f0cceff4a14306cdc5daa1d8839aabaf20edd3f1569577 759 | # https://get.helm.sh/helm-v3.5.3-windows-amd64.zip.sha256 760 | windows-amd64: sha256:33fef4740b255b58a52e5504622068fd8a7d9aea19f1a84438f5cc1c5aade0d6 761 | v3.5.4: 762 | # https://get.helm.sh/helm-v3.5.4-darwin-amd64.tar.gz.sha256 763 | darwin-amd64: sha256:072c40c743d30efdb8231ca03bab55caee7935e52175e42271a0c3bc37ec0b7b 764 | # https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz.sha256 765 | linux-amd64: sha256:a8ddb4e30435b5fd45308ecce5eaad676d64a5de9c89660b56face3fe990b318 766 | # https://get.helm.sh/helm-v3.5.4-linux-arm.tar.gz.sha256 767 | linux-arm: sha256:1a9cc09ef06db29a0232d265f73625056a0cb089e5a16b0a5ef8e810e0533157 768 | # https://get.helm.sh/helm-v3.5.4-linux-arm64.tar.gz.sha256 769 | linux-arm64: sha256:9db01522150a83a5d65b420171147448d8396c142d2c91af95e5ee77c1694176 770 | # https://get.helm.sh/helm-v3.5.4-linux-386.tar.gz.sha256 771 | linux-386: sha256:0a8366cfd6a51a66122c8705c153b06202a4c13bf590f31dcf15c54f40975267 772 | # https://get.helm.sh/helm-v3.5.4-linux-ppc64le.tar.gz.sha256 773 | linux-ppc64le: sha256:228dee9d5799cdeb92a7bc575c2177d2f4367f91dd3ee6ce506c45089fe929f8 774 | # https://get.helm.sh/helm-v3.5.4-windows-amd64.zip.sha256 775 | windows-amd64: sha256:830da2a8fba060ceff95486b3166b11c517035092e213f8d775be4ae2f7c13e0 776 | v3.6.0: 777 | # https://get.helm.sh/helm-v3.6.0-darwin-amd64.tar.gz.sha256 778 | darwin-amd64: sha256:7f6bcf15e5c828504dddbe733813a6d73e41abf28d649e7b9d698c4a77d412dd 779 | # https://get.helm.sh/helm-v3.6.0-linux-amd64.tar.gz.sha256 780 | linux-amd64: sha256:0a9c80b0f211791d6a9d36022abd0d6fd125139abe6d1dcf4c5bf3bc9dcec9c8 781 | # https://get.helm.sh/helm-v3.6.0-linux-arm.tar.gz.sha256 782 | linux-arm: sha256:75cda02e463a325152af6758817fac4b796e8da0ff974af30c82174edc2bd31b 783 | # https://get.helm.sh/helm-v3.6.0-linux-arm64.tar.gz.sha256 784 | linux-arm64: sha256:8a16f23866b1e74b347bcdd7f8731ebcfa37f35fc27c75dd29b13e87aed8484c 785 | # https://get.helm.sh/helm-v3.6.0-linux-386.tar.gz.sha256 786 | linux-386: sha256:e7091d31f65ade88246229a2e4f5baad1dafb314946ceaf9a6441fc04dcc9ce2 787 | # https://get.helm.sh/helm-v3.6.0-linux-ppc64le.tar.gz.sha256 788 | linux-ppc64le: sha256:9772a27bfc999d5c79c75d72c54adc6ce1686d983172f69efd3fbb19a5db54f2 789 | # https://get.helm.sh/helm-v3.6.0-windows-amd64.zip.sha256 790 | windows-amd64: sha256:4e2a5303c551d7836b289fa1869bf89f6d672fe8da078d25b45ede0fb3fffbfe 791 | v3.6.1: 792 | # https://get.helm.sh/helm-v3.6.1-darwin-amd64.tar.gz.sha256 793 | darwin-amd64: sha256:f5e49aac89701162871e576ebd32506060e43a470da1fcb4b8e4118dc3512913 794 | # https://get.helm.sh/helm-v3.6.1-linux-amd64.tar.gz.sha256 795 | linux-amd64: sha256:c64f2c7b1d00c5328b164cea4bbd5e0752c103193037173c9eadea9d6a57eddb 796 | # https://get.helm.sh/helm-v3.6.1-linux-arm.tar.gz.sha256 797 | linux-arm: sha256:cff76ba6b218610bf672e096939a0d736048d21b7008edbb38a44a8d3907a930 798 | # https://get.helm.sh/helm-v3.6.1-linux-arm64.tar.gz.sha256 799 | linux-arm64: sha256:a044b370d1b6e65b7d8d0aa7da4d11e4f406ec5b56af3a2f5bec09eb00c290fc 800 | # https://get.helm.sh/helm-v3.6.1-linux-386.tar.gz.sha256 801 | linux-386: sha256:06538500c2312da51691a7c4c72a54f3262725c77ca5aaa300fd0b97973cd822 802 | # https://get.helm.sh/helm-v3.6.1-linux-ppc64le.tar.gz.sha256 803 | linux-ppc64le: sha256:2aa587a872f87d0ffb1d92edfd2f98003b7ad8f747a2268252a3f51b873540a5 804 | # https://get.helm.sh/helm-v3.6.1-windows-amd64.zip.sha256 805 | windows-amd64: sha256:d46805bf24d4c93c5ccc9af2d49903e3a80771366d0c59ad6d18187450d888d0 806 | v3.6.2: 807 | # https://get.helm.sh/helm-v3.6.2-darwin-amd64.tar.gz.sha256 808 | darwin-amd64: sha256:81a94d2877326012b99ac0737517501e5ed69bb4987884e7f2d0887ad27895a9 809 | # https://get.helm.sh/helm-v3.6.2-linux-amd64.tar.gz.sha256 810 | linux-amd64: sha256:f3a4be96b8a3b61b14eec1a35072e1d6e695352e7a08751775abf77861a0bf54 811 | # https://get.helm.sh/helm-v3.6.2-linux-arm.tar.gz.sha256 812 | linux-arm: sha256:2c352e49fc2b962fe2f50e5ad4917c1c3ff40df4bb721637df18612ea025a755 813 | # https://get.helm.sh/helm-v3.6.2-linux-arm64.tar.gz.sha256 814 | linux-arm64: sha256:957031f3c8cf21359065817c15c5226cb3082cac33547542a37cf3425f9fdcd5 815 | # https://get.helm.sh/helm-v3.6.2-linux-386.tar.gz.sha256 816 | linux-386: sha256:6a0a0a71fa730a2ef18ddbe031cce4f49c0be3753c05abd39b22b194eee8a493 817 | # https://get.helm.sh/helm-v3.6.2-linux-ppc64le.tar.gz.sha256 818 | linux-ppc64le: sha256:a49a6131f09cc9dcb58be23894b1e88f7ef41d84a5fd4613a03a6113270052c4 819 | # https://get.helm.sh/helm-v3.6.2-windows-amd64.zip.sha256 820 | windows-amd64: sha256:71078748101de3f2df40b25031e4b7aa4bdf760ff7bcc6d3f503f988d24bd2c4 821 | v3.6.3: 822 | # https://get.helm.sh/helm-v3.6.3-darwin-amd64.tar.gz.sha256 823 | darwin-amd64: sha256:84a1ff17dd03340652d96e8be5172a921c97825fd278a2113c8233a4e8db5236 824 | # https://get.helm.sh/helm-v3.6.3-linux-amd64.tar.gz.sha256 825 | linux-amd64: sha256:07c100849925623dc1913209cd1a30f0a9b80a5b4d6ff2153c609d11b043e262 826 | # https://get.helm.sh/helm-v3.6.3-linux-arm.tar.gz.sha256 827 | linux-arm: sha256:6918e573a70c309fbf6385a0a0d18d090c10b44d318724f1f73e47ede4809635 828 | # https://get.helm.sh/helm-v3.6.3-linux-arm64.tar.gz.sha256 829 | linux-arm64: sha256:6fe647628bc27e7ae77d015da4d5e1c63024f673062ac7bc11453ccc55657713 830 | # https://get.helm.sh/helm-v3.6.3-linux-386.tar.gz.sha256 831 | linux-386: sha256:e7bafc7dd870621a79f7f2ad0c92e45957817a371b738da4e590ccbc45983244 832 | # https://get.helm.sh/helm-v3.6.3-linux-ppc64le.tar.gz.sha256 833 | linux-ppc64le: sha256:12ea5cdda8ee4a585230623254b997b28d4f9fb894ebf509b530af501366d0e9 834 | # https://get.helm.sh/helm-v3.6.3-windows-amd64.zip.sha256 835 | windows-amd64: sha256:797d2abd603a2646f2fb9c3fabba46f2fabae5cbd1eb87c20956ec5b4a2fc634 836 | v3.7.0: 837 | # https://get.helm.sh/helm-v3.7.0-darwin-amd64.tar.gz.sha256 838 | darwin-amd64: sha256:0bf671be69563a0c2b4253c393bed271fab90a4aa9321d09685a781f583b5c9d 839 | # https://get.helm.sh/helm-v3.7.0-linux-amd64.tar.gz.sha256 840 | linux-amd64: sha256:096e30f54c3ccdabe30a8093f8e128dba76bb67af697b85db6ed0453a2701bf9 841 | # https://get.helm.sh/helm-v3.7.0-linux-arm.tar.gz.sha256 842 | linux-arm: sha256:c9609757e56fa11036da469c0b7f21b6e21f05618bc437451050a8507441fe1b 843 | # https://get.helm.sh/helm-v3.7.0-linux-arm64.tar.gz.sha256 844 | linux-arm64: sha256:03bf55435b4ebef739f862334bdfbf7b7eed714b94340a22298c485b6626aaca 845 | # https://get.helm.sh/helm-v3.7.0-linux-386.tar.gz.sha256 846 | linux-386: sha256:daeb6979e1a8d32c5adaf0ce0ea6b4fede200ebe483bdd109b3b1294a6f33c2e 847 | # https://get.helm.sh/helm-v3.7.0-linux-ppc64le.tar.gz.sha256 848 | linux-ppc64le: sha256:0f997b9228a64477fc83ea515831c281074f2e01d3d0bf2c72c6163fca70d053 849 | # https://get.helm.sh/helm-v3.7.0-windows-amd64.zip.sha256 850 | windows-amd64: sha256:cf6dd076898e2dc1e7f4af593d011f99a9de353b6a2d019731dbc254a1ec880e 851 | v3.7.1: 852 | # https://get.helm.sh/helm-v3.7.1-darwin-amd64.tar.gz.sha256 853 | darwin-amd64: sha256:3a9efe337c61a61b3e160da919ac7af8cded8945b75706e401f3655a89d53ef5 854 | # https://get.helm.sh/helm-v3.7.1-linux-amd64.tar.gz.sha256 855 | linux-amd64: sha256:6cd6cad4b97e10c33c978ff3ac97bb42b68f79766f1d2284cfd62ec04cd177f4 856 | # https://get.helm.sh/helm-v3.7.1-linux-arm.tar.gz.sha256 857 | linux-arm: sha256:e035e0022cf5c49d08c08371364aae9eebe614a20035856e7370a85ded8db790 858 | # https://get.helm.sh/helm-v3.7.1-linux-arm64.tar.gz.sha256 859 | linux-arm64: sha256:57875be56f981d11957205986a57c07432e54d0b282624d68b1aeac16be70704 860 | # https://get.helm.sh/helm-v3.7.1-linux-386.tar.gz.sha256 861 | linux-386: sha256:9b6739066deff88639c45b42e05b6e3f9150786da78b7596ba6acf3a5c913eeb 862 | # https://get.helm.sh/helm-v3.7.1-linux-ppc64le.tar.gz.sha256 863 | linux-ppc64le: sha256:8c8d9ca04f0706fc289b160cd6b713e7e13078853b5cacd9fb6045897089e1fb 864 | # https://get.helm.sh/helm-v3.7.1-windows-amd64.zip.sha256 865 | windows-amd64: sha256:e057f24032a6b5602edccfdf8fa191568471fce29aada86d6f7f46fc611a3258 866 | v3.7.2: 867 | # https://get.helm.sh/helm-v3.7.2-darwin-amd64.tar.gz.sha256 868 | darwin-amd64: sha256:5a0738afb1e194853aab00258453be8624e0a1d34fcc3c779989ac8dbcd59436 869 | # https://get.helm.sh/helm-v3.7.2-linux-amd64.tar.gz.sha256 870 | linux-amd64: sha256:4ae30e48966aba5f807a4e140dad6736ee1a392940101e4d79ffb4ee86200a9e 871 | # https://get.helm.sh/helm-v3.7.2-linux-arm.tar.gz.sha256 872 | linux-arm: sha256:ab73727f1c00903aff010a3557ab4366a1a13ce2d243c9cb191e703fbb76c915 873 | # https://get.helm.sh/helm-v3.7.2-linux-arm64.tar.gz.sha256 874 | linux-arm64: sha256:b0214eabbb64791f563bd222d17150ce39bf4e2f5de49f49fdb456ce9ae8162f 875 | # https://get.helm.sh/helm-v3.7.2-linux-386.tar.gz.sha256 876 | linux-386: sha256:9bd6f50307fdaa26100bca3fd55aaac3016a985424c8482f37d3a3a4c8a9dbed 877 | # https://get.helm.sh/helm-v3.7.2-linux-ppc64le.tar.gz.sha256 878 | linux-ppc64le: sha256:a2a44726bee7d69b08fadc72fb3716428b9963f78ea5290711fe6fcb9bac3f14 879 | # https://get.helm.sh/helm-v3.7.2-windows-amd64.zip.sha256 880 | windows-amd64: sha256:299165f0af46bece9a61b41305cca8e8d5ec5319a4b694589cd71e6b75aca77e 881 | v3.8.0: 882 | # https://get.helm.sh/helm-v3.8.0-darwin-amd64.tar.gz.sha256 883 | darwin-amd64: sha256:532ddd6213891084873e5c2dcafa577f425ca662a6594a3389e288fc48dc2089 884 | # https://get.helm.sh/helm-v3.8.0-linux-amd64.tar.gz.sha256 885 | linux-amd64: sha256:8408c91e846c5b9ba15eb6b1a5a79fc22dd4d33ac6ea63388e5698d1b2320c8b 886 | # https://get.helm.sh/helm-v3.8.0-linux-arm.tar.gz.sha256 887 | linux-arm: sha256:05e900d0688edd8d455e0d4c51b419cd2b10120d485be7a1262582f51c92e941 888 | # https://get.helm.sh/helm-v3.8.0-linux-arm64.tar.gz.sha256 889 | linux-arm64: sha256:23e08035dc0106fe4e0bd85800fd795b2b9ecd9f32187aa16c49b0a917105161 890 | # https://get.helm.sh/helm-v3.8.0-linux-386.tar.gz.sha256 891 | linux-386: sha256:ed845e2e2631eddf526cab606f023fded03c5b99175f7cacd5edcd41800c7e45 892 | # https://get.helm.sh/helm-v3.8.0-linux-ppc64le.tar.gz.sha256 893 | linux-ppc64le: sha256:5070fa5188e7bc798dd54bc1ea9fc4cda623d9ff45eedb05ec93db234309f391 894 | # https://get.helm.sh/helm-v3.8.0-windows-amd64.zip.sha256 895 | windows-amd64: sha256:d52e0cda6c4cc0e0717d5161ca1ba7a8d446437afdbe42b3c565c145ac752888 896 | v3.8.1: 897 | # https://get.helm.sh/helm-v3.8.1-darwin-amd64.tar.gz.sha256 898 | darwin-amd64: sha256:3b6d87d360a51bf0f2344edd54e3580a8e8de2c4a4fd92eccef3e811f7e81bb3 899 | # https://get.helm.sh/helm-v3.8.1-darwin-arm64.tar.gz.sha256 900 | darwin-arm64: sha256:5f0fea586781fb867b92c10133786949ab6a447f297d5c12e1e8f5dd3a9ed712 901 | # https://get.helm.sh/helm-v3.8.1-linux-amd64.tar.gz.sha256 902 | linux-amd64: sha256:d643f48fe28eeb47ff68a1a7a26fc5142f348d02c8bc38d699674016716f61cd 903 | # https://get.helm.sh/helm-v3.8.1-linux-arm.tar.gz.sha256 904 | linux-arm: sha256:9f87153f545eea27b72ad9c639b197df792a4c784b403f118975e34a1bace2ca 905 | # https://get.helm.sh/helm-v3.8.1-linux-arm64.tar.gz.sha256 906 | linux-arm64: sha256:dbf5118259717d86c57d379317402ed66016c642cc0d684f3505da6f194b760d 907 | # https://get.helm.sh/helm-v3.8.1-linux-386.tar.gz.sha256 908 | linux-386: sha256:2642743584fb7595ef04205dbc6d67099d0ba94b145210ad1b543ab9eece8089 909 | # https://get.helm.sh/helm-v3.8.1-linux-ppc64le.tar.gz.sha256 910 | linux-ppc64le: sha256:7ab60a643fb7dd06f13209d85782623d817f3e8361b96e39b9949932f264ea86 911 | # https://get.helm.sh/helm-v3.8.1-windows-amd64.zip.sha256 912 | windows-amd64: sha256:a75003fc692131652d3bd218dd4007692390a1dd156f11fd7668e389bdd8f765 913 | v3.8.2: 914 | # https://get.helm.sh/helm-v3.8.2-darwin-amd64.tar.gz.sha256 915 | darwin-amd64: sha256:25bb4a70b0d9538a97abb3aaa57133c0779982a8091742a22026e60d8614f8a0 916 | # https://get.helm.sh/helm-v3.8.2-darwin-arm64.tar.gz.sha256 917 | darwin-arm64: sha256:dfddc0696597c010ed903e486fe112a18535ab0c92e35335aa54af2360077900 918 | # https://get.helm.sh/helm-v3.8.2-linux-amd64.tar.gz.sha256 919 | linux-amd64: sha256:6cb9a48f72ab9ddfecab88d264c2f6508ab3cd42d9c09666be16a7bf006bed7b 920 | # https://get.helm.sh/helm-v3.8.2-linux-arm.tar.gz.sha256 921 | linux-arm: sha256:3447782673a8dec87f0736d3fcde5c2af6316b0dd19f43b7ffaf873e4f5a486e 922 | # https://get.helm.sh/helm-v3.8.2-linux-arm64.tar.gz.sha256 923 | linux-arm64: sha256:238db7f55e887f9c1038b7e43585b84389a05fff5424e70557886cad1635b3ce 924 | # https://get.helm.sh/helm-v3.8.2-linux-386.tar.gz.sha256 925 | linux-386: sha256:4d18731d8c71031b38c4b6579636eda6626b25f5a1965fd3e44b7d5f58c702d5 926 | # https://get.helm.sh/helm-v3.8.2-linux-ppc64le.tar.gz.sha256 927 | linux-ppc64le: sha256:144fcfface6dc99295c1cfdd39238f188c601b96472e933e17054eddd1acb8fa 928 | # https://get.helm.sh/helm-v3.8.2-windows-amd64.zip.sha256 929 | windows-amd64: sha256:051959311ed5a3d49596b298b9e9618e2a0ad6a9270c134802f205698348ba5e 930 | v3.9.0: 931 | # https://get.helm.sh/helm-v3.9.0-darwin-amd64.tar.gz.sha256 932 | darwin-amd64: sha256:7e5a2f2a6696acf278ea17401ade5c35430e2caa57f67d4aa99c607edcc08f5e 933 | # https://get.helm.sh/helm-v3.9.0-darwin-arm64.tar.gz.sha256 934 | darwin-arm64: sha256:22cf080ded5dd71ec15d33c13586ace9b6002e97518a76df628e67ecedd5aa70 935 | # https://get.helm.sh/helm-v3.9.0-linux-amd64.tar.gz.sha256 936 | linux-amd64: sha256:1484ffb0c7a608d8069470f48b88d729e88c41a1b6602f145231e8ea7b43b50a 937 | # https://get.helm.sh/helm-v3.9.0-linux-arm.tar.gz.sha256 938 | linux-arm: sha256:bcdc6c68dacfabeeb6963dc2e6761e2e87026ffd9ea1cde266ee36841e7c6e6a 939 | # https://get.helm.sh/helm-v3.9.0-linux-arm64.tar.gz.sha256 940 | linux-arm64: sha256:5c0aa709c5aaeedd190907d70f9012052c1eea7dff94bffe941b879a33873947 941 | # https://get.helm.sh/helm-v3.9.0-linux-386.tar.gz.sha256 942 | linux-386: sha256:8cff2929a8c422382a87371f241a9e8353d05c6c4f7a20bdda09610d632e742d 943 | # https://get.helm.sh/helm-v3.9.0-linux-ppc64le.tar.gz.sha256 944 | linux-ppc64le: sha256:527eb823164fc1f474b053bb8c4e1f82f6100f1379f73de7d94ebdc7305d428f 945 | # https://get.helm.sh/helm-v3.9.0-windows-amd64.zip.sha256 946 | windows-amd64: sha256:631d333bce5f2274c00af753d54bb62886cdb17a958d2aff698c196612c9e8cb 947 | v3.9.1: 948 | # https://get.helm.sh/helm-v3.9.1-darwin-amd64.tar.gz.sha256 949 | darwin-amd64: sha256:3cd0ad43154506ef65003bb871e71ab88d080b855ecbaa183e41f774bc7fb46e 950 | # https://get.helm.sh/helm-v3.9.1-darwin-arm64.tar.gz.sha256 951 | darwin-arm64: sha256:df47fb682a3ddc9904ee5fe21e60a788cced3556df0496b46278644074b2618a 952 | # https://get.helm.sh/helm-v3.9.1-linux-amd64.tar.gz.sha256 953 | linux-amd64: sha256:73df7ddd5ab05e96230304bf0e6e31484b1ba136d0fc22679345c0b4bd43f7ac 954 | # https://get.helm.sh/helm-v3.9.1-linux-arm.tar.gz.sha256 955 | linux-arm: sha256:6de0c62cac3aba3449a8ae211df039d3bf2762127f98b5268b20522a19ce5b75 956 | # https://get.helm.sh/helm-v3.9.1-linux-arm64.tar.gz.sha256 957 | linux-arm64: sha256:655dbceb4ab4b246af2214e669b9d44e3a35f170f39df8eebdb8d87619c585d1 958 | # https://get.helm.sh/helm-v3.9.1-linux-386.tar.gz.sha256 959 | linux-386: sha256:2d8997e5961c47c1b01d71e187b971a1f1d3f705c0bc7696e893bbb460ea9374 960 | # https://get.helm.sh/helm-v3.9.1-linux-ppc64le.tar.gz.sha256 961 | linux-ppc64le: sha256:039cedb0381e3ed783638cb538765c17408fabcd765ebe51f8d22b22b3a7891e 962 | # https://get.helm.sh/helm-v3.9.1-windows-amd64.zip.sha256 963 | windows-amd64: sha256:9d6c1f4a2b328be15c548665e49e1628ebb4246258ab2cba6e0ee893b9881314 964 | v3.9.2: 965 | # https://get.helm.sh/helm-v3.9.2-darwin-amd64.tar.gz.sha256 966 | darwin-amd64: sha256:35d7ff8bea561831d78dce8f7bf614a7ffbcad3ff88d4c2f06a51bfa51c017e2 967 | # https://get.helm.sh/helm-v3.9.2-darwin-arm64.tar.gz.sha256 968 | darwin-arm64: sha256:6250a6b92603a9c14194932e9dc22380ac423779519521452163493db33b68c8 969 | # https://get.helm.sh/helm-v3.9.2-linux-amd64.tar.gz.sha256 970 | linux-amd64: sha256:3f5be38068a1829670440ccf00b3b6656fd90d0d9cfd4367539f3b13e4c20531 971 | # https://get.helm.sh/helm-v3.9.2-linux-arm.tar.gz.sha256 972 | linux-arm: sha256:fb9f0c1c9475c66c2b3579b908c181d519761bbfae963ffac860bc683a2253de 973 | # https://get.helm.sh/helm-v3.9.2-linux-arm64.tar.gz.sha256 974 | linux-arm64: sha256:e4e2f9aad786042d903534e3131bc5300d245c24bbadf64fc46cca1728051dbc 975 | # https://get.helm.sh/helm-v3.9.2-linux-386.tar.gz.sha256 976 | linux-386: sha256:401c2339e7436beae2c3b224342cb512682188a1c3406643332b71845d9fd7b1 977 | # https://get.helm.sh/helm-v3.9.2-linux-ppc64le.tar.gz.sha256 978 | linux-ppc64le: sha256:85ae9bc357095917cdb2d801b7eb62926f3fed6c2dcf07e1280809ad2af3daa9 979 | # https://get.helm.sh/helm-v3.9.2-windows-amd64.zip.sha256 980 | windows-amd64: sha256:d0d98a2a1f4794fcfc437000f89d337dc9278b6b7672f30e164f96c9413a7a74 981 | v3.9.3: 982 | # https://get.helm.sh/helm-v3.9.3-darwin-amd64.tar.gz.sha256 983 | darwin-amd64: sha256:ca3d57bb68135fa45a7acc2612d472e8ad01b78f49eaca57490aefef74a61c95 984 | # https://get.helm.sh/helm-v3.9.3-darwin-arm64.tar.gz.sha256 985 | darwin-arm64: sha256:db20ee8758616e1d69e90aedc5eb940751888bdd2b031badf2080a05df4c9eb7 986 | # https://get.helm.sh/helm-v3.9.3-linux-amd64.tar.gz.sha256 987 | linux-amd64: sha256:2d07360a9d93b18488f1ddb9de818b92ba738acbec6e1c66885a88703fa7b21c 988 | # https://get.helm.sh/helm-v3.9.3-linux-arm.tar.gz.sha256 989 | linux-arm: sha256:2b8cdb8064914ed1f1cd17f8366e68eab2f14e9fb0b2a0bac0f47fac7fbddf36 990 | # https://get.helm.sh/helm-v3.9.3-linux-arm64.tar.gz.sha256 991 | linux-arm64: sha256:59168c08c32293759005d0c509ce4be9038d7663827e05564c779e59658d8299 992 | # https://get.helm.sh/helm-v3.9.3-linux-386.tar.gz.sha256 993 | linux-386: sha256:634a5dca59674cb77fb7a69d08cee00c9051505e81af1c1d3ea96e5f3de84dbc 994 | # https://get.helm.sh/helm-v3.9.3-linux-ppc64le.tar.gz.sha256 995 | linux-ppc64le: sha256:bf06f00a01e01a3ad011c0b70fbbb07db3e65f2134ed5e640a2a2832a4101f48 996 | # https://get.helm.sh/helm-v3.9.3-windows-amd64.zip.sha256 997 | windows-amd64: sha256:cdd24727d233e620ce6e8ec21646a6218bde94cf3d5f24e9c4ae6a114939975d 998 | v3.9.4: 999 | # https://get.helm.sh/helm-v3.9.4-darwin-amd64.tar.gz.sha256 1000 | darwin-amd64: sha256:fe5930feca6fd1bd2c57df01c1f381c6444d1c3d2b857526bf6cbfbd6bf906b4 1001 | # https://get.helm.sh/helm-v3.9.4-darwin-arm64.tar.gz.sha256 1002 | darwin-arm64: sha256:a73d91751153169781b3ab5b4702ba1a2631fc8242eba33828b5905870059312 1003 | # https://get.helm.sh/helm-v3.9.4-linux-amd64.tar.gz.sha256 1004 | linux-amd64: sha256:31960ff2f76a7379d9bac526ddf889fb79241191f1dbe2a24f7864ddcb3f6560 1005 | # https://get.helm.sh/helm-v3.9.4-linux-arm.tar.gz.sha256 1006 | linux-arm: sha256:18ce0f79dcd927fea5b714ca03299929dad05266192d4cde3de6b4c4d4544249 1007 | # https://get.helm.sh/helm-v3.9.4-linux-arm64.tar.gz.sha256 1008 | linux-arm64: sha256:d24163e466f7884c55079d1050968e80a05b633830047116cdfd8ae28d35b0c0 1009 | # https://get.helm.sh/helm-v3.9.4-linux-386.tar.gz.sha256 1010 | linux-386: sha256:a37b0070e2f072050fdf4bd7430ffbe55390fee410eb0781cd01a0fe206eb963 1011 | # https://get.helm.sh/helm-v3.9.4-linux-ppc64le.tar.gz.sha256 1012 | linux-ppc64le: sha256:c63a951415c192397fda07c2f52aa60639b280920381c48d58be6803eb0c22f9 1013 | # https://get.helm.sh/helm-v3.9.4-windows-amd64.zip.sha256 1014 | windows-amd64: sha256:7cdc1342bc1863b6d5ce695fbef4d3b0d65c7c5bcef6ec6adf8fc9aa53821262 1015 | v3.10.0: 1016 | # https://get.helm.sh/helm-v3.10.0-darwin-amd64.tar.gz.sha256 1017 | darwin-amd64: sha256:1e7fd528482ac2ef2d79fe300724b3e07ff6f846a2a9b0b0fe6f5fa05691786b 1018 | # https://get.helm.sh/helm-v3.10.0-darwin-arm64.tar.gz.sha256 1019 | darwin-arm64: sha256:f7f6558ebc8211824032a7fdcf0d55ad064cb33ec1eeec3d18057b9fe2e04dbe 1020 | # https://get.helm.sh/helm-v3.10.0-linux-amd64.tar.gz.sha256 1021 | linux-amd64: sha256:bf56beb418bb529b5e0d6d43d56654c5a03f89c98400b409d1013a33d9586474 1022 | # https://get.helm.sh/helm-v3.10.0-linux-arm.tar.gz.sha256 1023 | linux-arm: sha256:1f756a2ea800dafb92fb77acc016220fdedee2be07630befd5ffd1410062b39c 1024 | # https://get.helm.sh/helm-v3.10.0-linux-arm64.tar.gz.sha256 1025 | linux-arm64: sha256:3b72f5f8a60772fb156d0a4ab93272e8da7ef4d18e6421a7020d7c019f521fc1 1026 | # https://get.helm.sh/helm-v3.10.0-linux-386.tar.gz.sha256 1027 | linux-386: sha256:423159a7f49f1719dab78f78113ac5d8deae21f99491e79984c6363ae668428d 1028 | # https://get.helm.sh/helm-v3.10.0-linux-ppc64le.tar.gz.sha256 1029 | linux-ppc64le: sha256:90f49ef742bf36480b46073a11ca4244670e74f530bf507b488180fbf7334ef3 1030 | # https://get.helm.sh/helm-v3.10.0-windows-amd64.zip.sha256 1031 | windows-amd64: sha256:9d841d55eb7cd6e07be0364bbfa85bceca7e184d50b43b13d20f044403937309 1032 | v3.10.1: 1033 | # https://get.helm.sh/helm-v3.10.1-darwin-amd64.tar.gz.sha256 1034 | darwin-amd64: sha256:e7f2db0df45a5011c1df8c82efde1e306a93a31eba4696d27cd751917e549ac6 1035 | # https://get.helm.sh/helm-v3.10.1-darwin-arm64.tar.gz.sha256 1036 | darwin-arm64: sha256:28a079a61c393d125c5d5e1a8e20a04b72c709ccfa8e7822f3f17bb1ad2bbc22 1037 | # https://get.helm.sh/helm-v3.10.1-linux-amd64.tar.gz.sha256 1038 | linux-amd64: sha256:c12d2cd638f2d066fec123d0bd7f010f32c643afdf288d39a4610b1f9cb32af3 1039 | # https://get.helm.sh/helm-v3.10.1-linux-arm.tar.gz.sha256 1040 | linux-arm: sha256:309f56a35185023262b4f20f7315d4e60854b517243444b34f5a458c81b33009 1041 | # https://get.helm.sh/helm-v3.10.1-linux-arm64.tar.gz.sha256 1042 | linux-arm64: sha256:d04b38d439ab8655abb4cb9ccc1efa8a3fe95f3f68af46d9137c6b7985491833 1043 | # https://get.helm.sh/helm-v3.10.1-linux-386.tar.gz.sha256 1044 | linux-386: sha256:fb75a02d8a6e9ba6dd458f47dc0771a0f15c1842b6f6e2928c9136e676657993 1045 | # https://get.helm.sh/helm-v3.10.1-linux-ppc64le.tar.gz.sha256 1046 | linux-ppc64le: sha256:855ab37613b393c68d50b4355273df2322f27db08b1deca8807bac80343a8a64 1047 | # https://get.helm.sh/helm-v3.10.1-windows-amd64.zip.sha256 1048 | windows-amd64: sha256:4c6f89f005a86665e3e90c28d36446434945594aac960a8d5a2d1c4fb1e53522 1049 | v3.10.2: 1050 | # https://get.helm.sh/helm-v3.10.2-darwin-amd64.tar.gz.sha256 1051 | darwin-amd64: sha256:e889960e4c1d7e2dfdb91b102becfaf22700cb86dc3e3553d9bebd7bab5a3803 1052 | # https://get.helm.sh/helm-v3.10.2-darwin-arm64.tar.gz.sha256 1053 | darwin-arm64: sha256:460441eea1764ca438e29fa0e38aa0d2607402f753cb656a4ab0da9223eda494 1054 | # https://get.helm.sh/helm-v3.10.2-linux-amd64.tar.gz.sha256 1055 | linux-amd64: sha256:2315941a13291c277dac9f65e75ead56386440d3907e0540bf157ae70f188347 1056 | # https://get.helm.sh/helm-v3.10.2-linux-arm.tar.gz.sha256 1057 | linux-arm: sha256:25af344f46348958baa1c758cdf3b204ede3ddc483be1171ed3738d47efd0aae 1058 | # https://get.helm.sh/helm-v3.10.2-linux-arm64.tar.gz.sha256 1059 | linux-arm64: sha256:57fa17b6bb040a3788116557a72579f2180ea9620b4ee8a9b7244e5901df02e4 1060 | # https://get.helm.sh/helm-v3.10.2-linux-386.tar.gz.sha256 1061 | linux-386: sha256:ac9cbef2ec1237e2723ee8d3a92d1c4525a2da7cecc11336ba67de9bb6b473f0 1062 | # https://get.helm.sh/helm-v3.10.2-linux-ppc64le.tar.gz.sha256 1063 | linux-ppc64le: sha256:53a578b84155d31c3e62dd93a88586b75e876dae82c7912c895ee5a574fa6209 1064 | # https://get.helm.sh/helm-v3.10.2-windows-amd64.zip.sha256 1065 | windows-amd64: sha256:f1a3190adecc26270bbef4f3ab2d1a56509f9d8df95413cdd6e3151f6f367862 1066 | v3.10.3: 1067 | # https://get.helm.sh/helm-v3.10.3-darwin-amd64.tar.gz.sha256 1068 | darwin-amd64: sha256:77a94ebd37eab4d14aceaf30a372348917830358430fcd7e09761eed69f08be5 1069 | # https://get.helm.sh/helm-v3.10.3-darwin-arm64.tar.gz.sha256 1070 | darwin-arm64: sha256:4f3490654349d6fee8d4055862efdaaf9422eca1ffd2a15393394fd948ae3377 1071 | # https://get.helm.sh/helm-v3.10.3-linux-amd64.tar.gz.sha256 1072 | linux-amd64: sha256:950439759ece902157cf915b209b8d694e6f675eaab5099fb7894f30eeaee9a2 1073 | # https://get.helm.sh/helm-v3.10.3-linux-arm.tar.gz.sha256 1074 | linux-arm: sha256:dca718eb68c72c51fc7157c4c2ebc8ce7ac79b95fc9355c5427ded99e913ec4c 1075 | # https://get.helm.sh/helm-v3.10.3-linux-arm64.tar.gz.sha256 1076 | linux-arm64: sha256:260cda5ff2ed5d01dd0fd6e7e09bc80126e00d8bdc55f3269d05129e32f6f99d 1077 | # https://get.helm.sh/helm-v3.10.3-linux-386.tar.gz.sha256 1078 | linux-386: sha256:592e98a492cb782aa7cd67e9afad76e51cd68f5160367600fe542c2d96aa0ad4 1079 | # https://get.helm.sh/helm-v3.10.3-linux-ppc64le.tar.gz.sha256 1080 | linux-ppc64le: sha256:93cdf398abc68e388d1b46d49d8e1197544930ecd3e81cc58d0a87a4579d60ed 1081 | # https://get.helm.sh/helm-v3.10.3-windows-amd64.zip.sha256 1082 | windows-amd64: sha256:5d97aa26830c1cd6c520815255882f148040587fd7cdddb61ef66e4c081566e0 1083 | v3.11.0: 1084 | # https://get.helm.sh/helm-v3.11.0-darwin-amd64.tar.gz.sha256 1085 | darwin-amd64: sha256:5a3d13545a302eb2623236353ccd3eaa01150c869f4d7f7a635073847fd7d932 1086 | # https://get.helm.sh/helm-v3.11.0-darwin-arm64.tar.gz.sha256 1087 | darwin-arm64: sha256:f4717f8d1dab79bace3ff5d9d48bebef62310421fd479205ef54a56204f97415 1088 | # https://get.helm.sh/helm-v3.11.0-linux-amd64.tar.gz.sha256 1089 | linux-amd64: sha256:6c3440d829a56071a4386dd3ce6254eab113bc9b1fe924a6ee99f7ff869b9e0b 1090 | # https://get.helm.sh/helm-v3.11.0-linux-arm.tar.gz.sha256 1091 | linux-arm: sha256:cddbef72886c82a123038883f32b04e739cc4bd7b9e5f869740d51e50a38be01 1092 | # https://get.helm.sh/helm-v3.11.0-linux-arm64.tar.gz.sha256 1093 | linux-arm64: sha256:57d36ff801ce8c0201ce9917c5a2d3b4da33e5d4ea154320962c7d6fb13e1f2c 1094 | # https://get.helm.sh/helm-v3.11.0-linux-386.tar.gz.sha256 1095 | linux-386: sha256:fad897763f3b965bc4d75c8f95748ebc0330a5859d9ea170a4885571facacdb1 1096 | # https://get.helm.sh/helm-v3.11.0-linux-ppc64le.tar.gz.sha256 1097 | linux-ppc64le: sha256:6481a51095f408773212ab53edc2ead8a70e39eba67c2491e11c4229a251f9b5 1098 | # https://get.helm.sh/helm-v3.11.0-windows-amd64.zip.sha256 1099 | windows-amd64: sha256:55477fa4295fb3043835397a19e99a138bb4859fbe7cd2d099de28df9d8786f1 1100 | v3.11.1: 1101 | # https://get.helm.sh/helm-v3.11.1-darwin-amd64.tar.gz.sha256 1102 | darwin-amd64: sha256:2548a90e5cc957ccc5016b47060665a9d2cd4d5b4d61dcc32f5de3144d103826 1103 | # https://get.helm.sh/helm-v3.11.1-darwin-arm64.tar.gz.sha256 1104 | darwin-arm64: sha256:43d0198a7a2ea2639caafa81bb0596c97bee2d4e40df50b36202343eb4d5c46b 1105 | # https://get.helm.sh/helm-v3.11.1-linux-amd64.tar.gz.sha256 1106 | linux-amd64: sha256:0b1be96b66fab4770526f136f5f1a385a47c41923d33aab0dcb500e0f6c1bf7c 1107 | # https://get.helm.sh/helm-v3.11.1-linux-arm.tar.gz.sha256 1108 | linux-arm: sha256:77b797134ea9a121f2ede9d159a43a8b3895a9ff92cc24b71b77fb726d9eba6d 1109 | # https://get.helm.sh/helm-v3.11.1-linux-arm64.tar.gz.sha256 1110 | linux-arm64: sha256:919173e8fb7a3b54d76af9feb92e49e86d5a80c5185020bae8c393fa0f0de1e8 1111 | # https://get.helm.sh/helm-v3.11.1-linux-386.tar.gz.sha256 1112 | linux-386: sha256:1581a4ce9d0014c49a3b2c6421f048d5c600e8cceced636eb4559073c335af0b 1113 | # https://get.helm.sh/helm-v3.11.1-linux-ppc64le.tar.gz.sha256 1114 | linux-ppc64le: sha256:6ab8f2e253c115b17eda1e10e96d1637047efd315e9807bcb1d0d0bcad278ab7 1115 | # https://get.helm.sh/helm-v3.11.1-windows-amd64.zip.sha256 1116 | windows-amd64: sha256:bc37d5d283e57c5dfa94f92ff704c8e273599ff8df3f8132cef5ca73f6a23d0a 1117 | v3.11.2: 1118 | # https://get.helm.sh/helm-v3.11.2-darwin-amd64.tar.gz.sha256 1119 | darwin-amd64: sha256:404938fd2c6eff9e0dab830b0db943fca9e1572cd3d7ee40904705760faa390f 1120 | # https://get.helm.sh/helm-v3.11.2-darwin-arm64.tar.gz.sha256 1121 | darwin-arm64: sha256:f61a3aa55827de2d8c64a2063fd744b618b443ed063871b79f52069e90813151 1122 | # https://get.helm.sh/helm-v3.11.2-linux-amd64.tar.gz.sha256 1123 | linux-amd64: sha256:781d826daec584f9d50a01f0f7dadfd25a3312217a14aa2fbb85107b014ac8ca 1124 | # https://get.helm.sh/helm-v3.11.2-linux-arm.tar.gz.sha256 1125 | linux-arm: sha256:444b65100e224beee0a3a3a54cb19dad37388fa9217ab2782ba63551c4a2e128 1126 | # https://get.helm.sh/helm-v3.11.2-linux-arm64.tar.gz.sha256 1127 | linux-arm64: sha256:0a60baac83c3106017666864e664f52a4e16fbd578ac009f9a85456a9241c5db 1128 | # https://get.helm.sh/helm-v3.11.2-linux-386.tar.gz.sha256 1129 | linux-386: sha256:dee028554da99415eb19b4b1fd423db390f8f4d49e4c4cbc3df5d6f658ec7f38 1130 | # https://get.helm.sh/helm-v3.11.2-linux-ppc64le.tar.gz.sha256 1131 | linux-ppc64le: sha256:04cbb8d053f2d8023e5cc6b771e9fa384fdd341eb7193a0fb592b7e2a036bf3d 1132 | # https://get.helm.sh/helm-v3.11.2-windows-amd64.zip.sha256 1133 | windows-amd64: sha256:bca0c5b99a0e6621032f1767e61a1723b86c5f4ef565fa58be8be6d619a4276a 1134 | v3.11.3: 1135 | # https://get.helm.sh/helm-v3.11.3-darwin-amd64.tar.gz.sha256 1136 | darwin-amd64: sha256:9d029df37664b50e427442a600e4e065fa75fd74dac996c831ac68359654b2c4 1137 | # https://get.helm.sh/helm-v3.11.3-darwin-arm64.tar.gz.sha256 1138 | darwin-arm64: sha256:267e4d50b68e8854b9cc44517da9ab2f47dec39787fed9f7eba42080d61ac7f8 1139 | # https://get.helm.sh/helm-v3.11.3-linux-amd64.tar.gz.sha256 1140 | linux-amd64: sha256:ca2d5d40d4cdfb9a3a6205dd803b5bc8def00bd2f13e5526c127e9b667974a89 1141 | # https://get.helm.sh/helm-v3.11.3-linux-arm.tar.gz.sha256 1142 | linux-arm: sha256:0816db0efd033c78c3cc1c37506967947b01965b9c0739fe13ec2b1eea08f601 1143 | # https://get.helm.sh/helm-v3.11.3-linux-arm64.tar.gz.sha256 1144 | linux-arm64: sha256:9f58e707dcbe9a3b7885c4e24ef57edfb9794490d72705b33a93fa1f3572cce4 1145 | # https://get.helm.sh/helm-v3.11.3-linux-386.tar.gz.sha256 1146 | linux-386: sha256:09c111400d953eda371aaa6e5f0f65acc7af6c6b31a9f327414bb6f0756ea215 1147 | # https://get.helm.sh/helm-v3.11.3-linux-ppc64le.tar.gz.sha256 1148 | linux-ppc64le: sha256:9f0a8299152ec714cee7bdf61066ba83d34d614c63e97843d30815b55c942612 1149 | # https://get.helm.sh/helm-v3.11.3-windows-amd64.zip.sha256 1150 | windows-amd64: sha256:ae146d2a90600c6958bc801213daef467237cf475e26ab3f476dfb8e0d9549b7 1151 | v3.12.0: 1152 | # https://get.helm.sh/helm-v3.12.0-darwin-amd64.tar.gz.sha256 1153 | darwin-amd64: sha256:8223beb796ff19b59e615387d29be8c2025c5d3aea08485a262583de7ba7d708 1154 | # https://get.helm.sh/helm-v3.12.0-darwin-arm64.tar.gz.sha256 1155 | darwin-arm64: sha256:879f61d2ad245cb3f5018ab8b66a87619f195904a4df3b077c98ec0780e36c37 1156 | # https://get.helm.sh/helm-v3.12.0-linux-amd64.tar.gz.sha256 1157 | linux-amd64: sha256:da36e117d6dbc57c8ec5bab2283222fbd108db86c83389eebe045ad1ef3e2c3b 1158 | # https://get.helm.sh/helm-v3.12.0-linux-arm.tar.gz.sha256 1159 | linux-arm: sha256:1d1d3b0b6397825c3f91ec5f5e66eb415a4199ccfaf063ca399d64854897f3f0 1160 | # https://get.helm.sh/helm-v3.12.0-linux-arm64.tar.gz.sha256 1161 | linux-arm64: sha256:658839fed8f9be2169f5df68e55cb2f0aa731a50df454caf183186766800bbd0 1162 | # https://get.helm.sh/helm-v3.12.0-linux-386.tar.gz.sha256 1163 | linux-386: sha256:3815f4caa054be027ae1d6c17a302ee1fd7ff805d631f7ff75c9d093c41ab389 1164 | # https://get.helm.sh/helm-v3.12.0-linux-ppc64le.tar.gz.sha256 1165 | linux-ppc64le: sha256:252d952b0e1b4ed2013710ddedf687ed5545d9f95a4fd72de0ff9617ff69155c 1166 | # https://get.helm.sh/helm-v3.12.0-windows-amd64.zip.sha256 1167 | windows-amd64: sha256:52138ba8caec50c358c7aee41aac28d6a8a037878ada3cf5ce6c1049fc772547 1168 | v3.12.1: 1169 | # https://get.helm.sh/helm-v3.12.1-darwin-amd64.tar.gz.sha256 1170 | darwin-amd64: sha256:f487b5d8132bd2091378258a3029e33ee10f71575b2167cdfeaf6d0144d20938 1171 | # https://get.helm.sh/helm-v3.12.1-darwin-arm64.tar.gz.sha256 1172 | darwin-arm64: sha256:e82e0433589b1b5170807d6fec75baedba40620458510bbd30cdb9d2246415fe 1173 | # https://get.helm.sh/helm-v3.12.1-linux-amd64.tar.gz.sha256 1174 | linux-amd64: sha256:1a7074f58ef7190f74ce6db5db0b70e355a655e2013c4d5db2317e63fa9e3dea 1175 | # https://get.helm.sh/helm-v3.12.1-linux-arm.tar.gz.sha256 1176 | linux-arm: sha256:6ae6d1cb3b9f7faf68d5cd327eaa53c432f01e8fd67edba4e4c744dcbd8a0883 1177 | # https://get.helm.sh/helm-v3.12.1-linux-arm64.tar.gz.sha256 1178 | linux-arm64: sha256:50548d4fedef9d8d01d1ed5a2dd5c849271d1017127417dc4c7ef6777ae68f7e 1179 | # https://get.helm.sh/helm-v3.12.1-linux-386.tar.gz.sha256 1180 | linux-386: sha256:983addced237a8eb921c2c8c953310d92031a6ce4599632edbe7cdb2c95a701e 1181 | # https://get.helm.sh/helm-v3.12.1-linux-ppc64le.tar.gz.sha256 1182 | linux-ppc64le: sha256:32b25dba14549a4097bf3dd62221cf6df06279ded391f7479144e3a215982aaf 1183 | # https://get.helm.sh/helm-v3.12.1-windows-amd64.zip.sha256 1184 | windows-amd64: sha256:9040f8f37c90600a51db4934c04bc9c2adc058cb2161e20b5193b3ba46de10fa 1185 | -------------------------------------------------------------------------------- /dl-checksum.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | DIR=~/Downloads 3 | MIRROR=https://get.helm.sh 4 | 5 | 6 | dl() 7 | { 8 | local ver=$1 9 | local os=$2 10 | local arch=$3 11 | local archive_type=$4 12 | local platform="${os}-${arch}" 13 | local file=helm-${ver}-${platform}.${archive_type}.sha256 14 | local url=$MIRROR/$file 15 | printf " # %s\n" $url 16 | printf " %s: sha256:%s\n" $platform $(curl -SsLf $url) 17 | } 18 | 19 | dl_ver () { 20 | local ver=$1 21 | printf " %s:\n" $ver 22 | dl $ver darwin amd64 tar.gz 23 | dl $ver darwin arm64 tar.gz 24 | dl $ver linux amd64 tar.gz 25 | dl $ver linux arm tar.gz 26 | dl $ver linux arm64 tar.gz 27 | dl $ver linux 386 tar.gz 28 | dl $ver linux ppc64le tar.gz 29 | dl $ver windows amd64 zip 30 | } 31 | 32 | dl_ver ${1:-v3.12.1} 33 | -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for kubernetes-helm 3 | -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | author: Andrew Rothstein 4 | company: BlackRock 5 | description: installs kubernetes helm 6 | galaxy_tags: 7 | - development 8 | - paas 9 | - k8s 10 | - helm 11 | license: 12 | - MIT 13 | min_ansible_version: 2.0 14 | platforms: 15 | - name: Alpine 16 | versions: 17 | - all 18 | - name: Archlinux 19 | versions: 20 | - all 21 | - name: Debian 22 | versions: 23 | - bookworm 24 | - bullseye 25 | - name: EL 26 | versions: 27 | - 8 28 | - 9 29 | - name: Fedora 30 | versions: 31 | - 37 32 | - 38 33 | - name: macOS 34 | versions: 35 | - all 36 | - name: Ubuntu 37 | versions: 38 | - focal 39 | - jammy 40 | -------------------------------------------------------------------------------- /meta/requirements.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - name: andrewrothstein.unarchive-deps 3 | version: v1.2.5 4 | -------------------------------------------------------------------------------- /tasks/brew.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - name: install brew package 3 | become: '{{ kubernetes_helm_privilege_escalate | default(False) }}' 4 | become_user: root 5 | homebrew: 6 | name: '{{ kubernetes_helm_brew_package }}' 7 | state: present 8 | -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - include_role: 3 | name: andrewrothstein.unarchive-deps 4 | - name: resolve platform specific vars 5 | include_vars: '{{ item }}' 6 | with_first_found: 7 | - files: 8 | - '{{ ansible_distribution }}-{{ ansible_distribution_release }}.yml' 9 | - '{{ ansible_distribution }}.yml' 10 | - '{{ ansible_os_family }}.yml' 11 | skip: true 12 | paths: 13 | - '{{ role_path }}/vars' 14 | 15 | - include_tasks: '{{ kubernetes_helm_installer | default("tgz") }}.yml' 16 | -------------------------------------------------------------------------------- /tasks/tgz.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - name: check for installation in {{ kubernetes_helm_install_dir }} 3 | become: true 4 | stat: 5 | path: '{{ kubernetes_helm_install_dir }}' 6 | changed_when: false 7 | register: kubernetes_helm_binary_dir 8 | 9 | - when: not kubernetes_helm_binary_dir.stat.exists 10 | block: 11 | - name: downloading {{ kubernetes_helm_url }} 12 | become: true 13 | become_user: root 14 | get_url: 15 | url: '{{ kubernetes_helm_url }}' 16 | dest: '{{ kubernetes_helm_tmp_archive }}' 17 | checksum: '{{ kubernetes_helm_checksum }}' 18 | mode: 0644 19 | 20 | - name: mkdir {{ kubernetes_helm_install_dir }} 21 | become: true 22 | become_user: root 23 | file: 24 | path: '{{ kubernetes_helm_install_dir }}' 25 | state: directory 26 | mode: 0755 27 | 28 | - name: unarchive {{ kubernetes_helm_tmp_archive }} to {{ kubernetes_helm_install_dir }} 29 | become: true 30 | become_user: root 31 | unarchive: 32 | remote_src: true 33 | src: '{{ kubernetes_helm_tmp_archive }}' 34 | dest: '{{ kubernetes_helm_install_dir }}' 35 | creates: '{{ kubernetes_helm_install_subdir }}' 36 | always: 37 | - name: cleanup {{ kubernetes_helm_tmp_archive }} 38 | become: true 39 | become_user: root 40 | file: 41 | path: '{{ kubernetes_helm_tmp_archive }}' 42 | state: absent 43 | 44 | - name: creating link in {{ kubernetes_helm_link_bin_dir }} to {{ kubernetes_helm_install_exe }} 45 | become: true 46 | become_user: root 47 | with_items: '{{ kubernetes_helm_links }}' 48 | file: 49 | src: '{{ kubernetes_helm_install_exe }}' 50 | dest: '{{ item }}' 51 | state: link 52 | -------------------------------------------------------------------------------- /test.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - hosts: all 3 | roles: 4 | - role: '{{ playbook_dir }}' 5 | tasks: 6 | - command: /usr/local/bin/helm version 7 | register: kubernetes_helm_test_output 8 | - debug: 9 | msg: '{{ kubernetes_helm_test_output.stdout }}' 10 | -------------------------------------------------------------------------------- /tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /tests/test.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - hosts: localhost 3 | remote_user: root 4 | roles: 5 | - kubernetes-helm 6 | -------------------------------------------------------------------------------- /vars/Darwin.yml: -------------------------------------------------------------------------------- 1 | --- 2 | kubernetes_helm_privilege_escalate: false 3 | kubernetes_helm_installer: brew 4 | kubernetes_helm_brew_package: kubernetes-helm 5 | kubernetes_helm_os: darwin 6 | -------------------------------------------------------------------------------- /vars/Windows.yml: -------------------------------------------------------------------------------- 1 | --- 2 | kubernetes_helm_os: windows 3 | kubernetes_helm_archive_type: zip 4 | -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | kubernetes_helm_platform: '{{ kubernetes_helm_os }}-{{ kubernetes_helm_arch_map[ansible_architecture] }}' 3 | kubernetes_helm_name: helm-{{ kubernetes_helm_ver }}-{{ kubernetes_helm_platform }} 4 | kubernetes_helm_archive: '{{kubernetes_helm_name}}.{{ kubernetes_helm_archive_type }}' 5 | kubernetes_helm_tmp_archive: /tmp/{{ kubernetes_helm_archive }} 6 | 7 | kubernetes_helm_url: '{{ kubernetes_helm_mirror }}/{{ kubernetes_helm_archive }}' 8 | kubernetes_helm_checksum: '{{ kubernetes_helm_checksums[kubernetes_helm_ver][kubernetes_helm_platform] }}' 9 | 10 | kubernetes_helm_install_dir: '{{ kubernetes_helm_parent_install_dir }}/helm-{{ kubernetes_helm_ver }}' 11 | kubernetes_helm_install_subdir: '{{ kubernetes_helm_install_dir }}/{{ kubernetes_helm_platform }}' 12 | kubernetes_helm_install_exe: '{{ kubernetes_helm_install_subdir }}/helm' 13 | 14 | kubernetes_helm_link_bin_dir: '{{ kubernetes_helm_parent_install_dir }}/bin' 15 | kubernetes_helm_links: 16 | - '{{ kubernetes_helm_link_bin_dir }}/helm' 17 | - '{{ kubernetes_helm_link_bin_dir }}/helm-{{ kubernetes_helm_ver }}' 18 | --------------------------------------------------------------------------------