X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=packer%2Fprovision%2Fhelm.yaml;h=d3ab71bbdf8614a7005ef51ae0249fa555f9ea3c;hb=c3c78f609f2fc0189fd8eb27dc9b16f95e645cc0;hp=46b925836f9cb3acafca1d11461b0102606dcf00;hpb=a74e391c5ff155b7d1e093f1e618008715caaedf;p=ci-management.git diff --git a/packer/provision/helm.yaml b/packer/provision/helm.yaml index 46b925836..d3ab71bbd 100644 --- a/packer/provision/helm.yaml +++ b/packer/provision/helm.yaml @@ -6,9 +6,9 @@ become_method: sudo vars: - kubectl_version: 1.19.11 + kubectl_version: 1.23.7 helm3_6_version: 3.6.3 - helm3_5_version: 3.5.2 + helm3_8_version: 3.8.2 chartmuseum_version: 0.12.0 tasks: @@ -52,39 +52,40 @@ which helm3.6 become: true - - name: 'Install Helm3.5 {{helm3_5_version}}' + - name: 'Install Helm3.8 {{helm3_8_version}}' block: - - name: 'Create directory /tmp/helm3.5' + - name: 'Create directory /tmp/helm3.8' file: - path: /tmp/helm3.5 + path: /tmp/helm3.8 state: directory - - name: 'Fetch tar.gz for Helm 3.5' + - name: 'Fetch tar.gz for Helm 3.8' get_url: - url: "https://get.helm.sh/helm-v{{helm3_5_version}}-linux-amd64.tar.gz" - dest: /tmp/helm3.5 - - name: 'Unarchive Helm 3.5' + url: "https://get.helm.sh/helm-v{{helm3_8_version}}-linux-amd64.tar.gz" + dest: /tmp/helm3.8 + - name: 'Unarchive Helm 3.8' unarchive: - src: "/tmp/helm3.5/helm-v{{helm3_5_version}}-linux-amd64.tar.gz" - dest: /tmp/helm3.5 + src: "/tmp/helm3.8/helm-v{{helm3_8_version}}-linux-amd64.tar.gz" + dest: /tmp/helm3.8 remote_src: true become: yes - - name: 'Move Helm 3.5 bin to /usr/local/bin and set as executable' - command: 'mv /tmp/helm3.5/linux-amd64/helm /usr/local/bin/helm3.5' + - name: 'Move Helm 3.8 bin to /usr/local/bin and set as executable' + command: 'mv /tmp/helm3.8/linux-amd64/helm /usr/local/bin/helm3.8' become: yes - - name: 'Check Helm 3.5' - command: 'which helm3.5' + - name: 'Check Helm 3.8' + command: 'which helm3.8' - name: 'Check kubectl {{kubectl_version}}' command: 'which kubectl' - - name: 'Install Helm 3.5' + - name: 'Install Helm 3.8' shell: | - echo "----> Installing helm3.5" - wget 'https://get.helm.sh/helm-v{{helm3_5_version}}-linux-amd64.tar.gz' - tar -xvf 'https://get.helm.sh/helm-v{{helm3_5_version}}-linux-amd64.tar.gz' - mv linux-amd64/helm /usr/local/bin/helm3.5 - which helm3.5 + echo "----> Installing helm3.8" + wget 'https://get.helm.sh/helm-v{{helm3_8_version}}-linux-amd64.tar.gz' + tar -xvf 'https://get.helm.sh/helm-v{{helm3_8_version}}-linux-amd64.tar.gz' + mv linux-amd64/helm /usr/local/bin/helm3.8 + which helm3.8 become: true + - name: 'Install ChartMuseum {{chartmuseum_version}}' block: - name: 'Fetch bin for ChartMuseum'