[OOM] Upgrade oom versions
[ci-management.git] / packer / provision / helm.yaml
index 2ab517f..d3ab71b 100644 (file)
@@ -6,8 +6,9 @@
   become_method: sudo
 
   vars:
-    kubectl_version: 1.19.11
+    kubectl_version: 1.23.7
     helm3_6_version: 3.6.3
+    helm3_8_version: 3.8.2
     chartmuseum_version: 0.12.0
 
   tasks:
              which helm3.6
           become: true
 
+    - name: 'Install Helm3.8 {{helm3_8_version}}'
+      block:
+        - name: 'Create directory /tmp/helm3.8'
+          file:
+            path: /tmp/helm3.8
+            state: directory
+        - name: 'Fetch tar.gz for Helm 3.8'
+          get_url:
+            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.8/helm-v{{helm3_8_version}}-linux-amd64.tar.gz"
+            dest: /tmp/helm3.8
+            remote_src: true
+          become: yes
+        - 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.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 for ChartMuseum'