summaryrefslogtreecommitdiffstats
path: root/packer/provision/helm.yaml
blob: 4ccbecd6372e07b7e438b0af3a8ae680da21f14d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
- import_playbook: ../common-packer/provision/docker.yaml

- hosts: all
  become_user: root
  become_method: sudo

  vars:
    kubectl_version: 1.23.8
    helm3_8_version: 3.8.2
    chartmuseum_version: 0.15.0

  tasks:
    - name: "Install kubectl {{kubectl_version}}"
      get_url:
        url: "https://storage.googleapis.com/kubernetes-release/release/v{{kubectl_version}}/bin/linux/amd64/kubectl"
        dest: /usr/local/bin/kubectl
        mode: 0775
      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: true
        - 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: true
        - 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: "Create directory /tmp/chartmuseum"
          file:
            path: /tmp/chartmuseum
            state: directory
        - name: "Fetch tar.gz for chartmuseum"
          get_url:
            url: "https://get.helm.sh/chartmuseum-v{{chartmuseum_version}}-linux-amd64.tar.gz"
            dest: /tmp/chartmuseum
        - name: "Unarchive chartmuseum"
          unarchive:
            src: "/tmp/chartmuseum/chartmuseum-v{{chartmuseum_version}}-linux-amd64.tar.gz"
            dest: /tmp/chartmuseum
            remote_src: true
          become: true
        - name: "Move chartmuseum bin to /usr/local/bin and set as executable"
          command: "mv /tmp/chartmuseum/linux-amd64/chartmuseum /usr/local/bin/chartmuseum"
          become: true
        - name: "Check ChartMuseum {{chartmuseum_version}}"
          command: "which chartmuseum"