X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=packer%2Fprovision%2Fhelm.yaml;h=d3ab71bbdf8614a7005ef51ae0249fa555f9ea3c;hb=c3c78f609f2fc0189fd8eb27dc9b16f95e645cc0;hp=def9d894092b1d4b329bf24f9dc9de95d8a9116d;hpb=7695283ef892635255e8180512ff5bd90d9e55bf;p=ci-management.git diff --git a/packer/provision/helm.yaml b/packer/provision/helm.yaml index def9d8940..d3ab71bbd 100644 --- a/packer/provision/helm.yaml +++ b/packer/provision/helm.yaml @@ -6,68 +6,93 @@ become_method: sudo vars: - kubectl_version: 1.15.11 - helm_version: 2.16.6 - helm3_version: 3.3.4 + kubectl_version: 1.23.7 + helm3_6_version: 3.6.3 + helm3_8_version: 3.8.2 chartmuseum_version: 0.12.0 tasks: - name: 'Install kubectl {{kubectl_version}}' get_url: - url: https://storage.googleapis.com/kubernetes-release/release/v{{kubectl_version}}/bin/linux/amd64/kubectl + url: "https://storage.googleapis.com/kubernetes-release/release/v{{kubectl_version}}/bin/linux/amd64/kubectl" dest: /usr/local/bin/kubectl mode: 0775 become: yes - - name: 'Install Helm {{helm_version}}' + - name: 'Install Helm3.6 {{helm3_6_version}}' block: - - name: 'Fetch tar.gz' + - name: 'Create directory /tmp/helm3.6' + file: + path: /tmp/helm3.6 + state: directory + - name: 'Fetch tar.gz for Helm 3.6' get_url: - url: "http://storage.googleapis.com/kubernetes-helm/helm-v{{helm_version}}-linux-amd64.tar.gz" - dest: /tmp/helm-v{{helm_version}}-linux-amd64.tar.gz - - name: 'Unarchive' + 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/helm-v{{helm_version}}-linux-amd64.tar.gz - dest: /tmp + 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 to /usr/local/bin and set as executable' - command: 'mv /tmp/linux-amd64/helm /usr/local/bin/helm' + - 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.' - command: 'which helm' + - name: 'Check Helm 3.6' + command: 'which helm3.6' + - name: 'Check kubectl {{kubectl_version}}' + command: 'which kubectl' - - name: 'Install Helm3 {{helm3_version}}' + - 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 + - name: 'Create directory /tmp/helm3.8' file: - path: /tmp/helm3 + path: /tmp/helm3.8 state: directory - - name: 'Fetch tar.gz' + - name: 'Fetch tar.gz for Helm 3.8' get_url: - url: "http://storage.googleapis.com/kubernetes-helm/helm-v{{helm3_version}}-linux-amd64.tar.gz" - dest: /tmp/helm3/helm-v{{helm3_version}}-linux-amd64.tar.gz - - name: 'Unarchive' + 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/helm-v{{helm3_version}}-linux-amd64.tar.gz - dest: /tmp/helm3 + 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 to /usr/local/bin and set as executable' - command: 'mv /tmp/helm3/linux-amd64/helm /usr/local/bin/helm3' + - 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 helm3.' - command: 'which helm3' - - name: 'Check kubectl.' + - name: 'Check Helm 3.8' + command: 'which helm3.8' + - name: 'Check kubectl {{kubectl_version}}' command: 'which kubectl' + - name: 'Install Helm 3.8' + shell: | + 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' + - name: 'Fetch bin for ChartMuseum' get_url: url: "https://s3.amazonaws.com/chartmuseum/release/v{{ chartmuseum_version }}/bin/linux/amd64/chartmuseum" dest: /usr/local/bin/chartmuseum mode: "0755" become: yes - - name: 'Check chartmuseum.' + - name: 'Check ChartMuseum {{chartmuseum_version}}' command: 'which chartmuseum'