diff options
author | efiacor <fiachra.corcoran@est.tech> | 2022-11-10 09:45:50 +0000 |
---|---|---|
committer | efiacor <fiachra.corcoran@est.tech> | 2022-11-10 09:46:16 +0000 |
commit | f165f31428a4a025a9a7786132edbfa3023169a2 (patch) | |
tree | ccfe7991c1094f785a361d0c8f4075a3904eb43e /packer/provision/helm.yaml | |
parent | eec6ffb94e906f3f5ef0295e568ccf0948bbf033 (diff) |
[OOM] Upgrade and clean up OOM jobs
Change-Id: I8c6a22f39add57a5b30ad711ac296825986feb20
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Issue-ID: CIMAN-424
Diffstat (limited to 'packer/provision/helm.yaml')
-rw-r--r-- | packer/provision/helm.yaml | 36 |
1 files changed, 1 insertions, 35 deletions
diff --git a/packer/provision/helm.yaml b/packer/provision/helm.yaml index d3ab71bbd..7173e98f4 100644 --- a/packer/provision/helm.yaml +++ b/packer/provision/helm.yaml @@ -6,8 +6,7 @@ become_method: sudo vars: - kubectl_version: 1.23.7 - helm3_6_version: 3.6.3 + kubectl_version: 1.23.8 helm3_8_version: 3.8.2 chartmuseum_version: 0.12.0 @@ -19,39 +18,6 @@ mode: 0775 become: yes - - name: 'Install Helm3.6 {{helm3_6_version}}' - block: - - name: 'Create directory /tmp/helm3.6' - file: - path: /tmp/helm3.6 - state: directory - - name: 'Fetch tar.gz for Helm 3.6' - get_url: - url: "https://get.helm.sh/helm-v{{helm3_6_version}}-linux-amd64.tar.gz" - dest: /tmp/helm3.6 - - name: 'Unarchive Helm 3.6' - unarchive: - src: "/tmp/helm3.6/helm-v{{helm3_6_version}}-linux-amd64.tar.gz" - dest: /tmp/helm3.6 - remote_src: true - become: yes - - name: 'Move Helm 3.6 bin to /usr/local/bin and set as executable' - command: 'mv /tmp/helm3.6/linux-amd64/helm /usr/local/bin/helm3.6' - become: yes - - name: 'Check Helm 3.6' - command: 'which helm3.6' - - name: 'Check kubectl {{kubectl_version}}' - command: 'which kubectl' - - - name: 'Install Helm 3.6' - shell: | - echo "----> Installing helm3.6" - wget 'https://get.helm.sh/helm-v{{helm3_6_version}}-linux-amd64.tar.gz' - tar -xvf 'https://get.helm.sh/helm-v{{helm3_6_version}}-linux-amd64.tar.gz' - mv linux-amd64/helm /usr/local/bin/helm3.6 - which helm3.6 - become: true - - name: 'Install Helm3.8 {{helm3_8_version}}' block: - name: 'Create directory /tmp/helm3.8' |