[OOM] Upgrade oom versions 56/130256/1
authorefiacor <fiachra.corcoran@est.tech>
Thu, 11 Aug 2022 08:09:01 +0000 (09:09 +0100)
committerefiacor <fiachra.corcoran@est.tech>
Thu, 11 Aug 2022 08:09:05 +0000 (09:09 +0100)
Change-Id: I79c7bdca4c7b683d74e10afed84395649a233a9f
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Issue-ID: OOM-3018

jjb/oom/oom-helm.yaml
packer/provision/helm.yaml
shell/helm-repo-init.sh

index 6491437..0d896a2 100644 (file)
@@ -32,6 +32,7 @@
 
     helm_bin:
       - helm3.6
+      - helm3.8
 
     exclude: []
     subproject: []
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'
index 5aecc8e..3228aa3 100755 (executable)
@@ -6,6 +6,6 @@ mkdir -p ".chartstorage"
 
 chartmuseum --port=6464 --storage="local" --storage-local-rootdir=".chartstorage" &> /dev/null &
 source helm.prop
-$HELM_BIN plugin install --version v0.9.0 https://github.com/chartmuseum/helm-push.git || true
+$HELM_BIN plugin install --version v0.10.2 https://github.com/chartmuseum/helm-push.git || true
 $HELM_BIN repo add local http://localhost:6464
 $HELM_BIN repo add onap http://localhost:6464