summaryrefslogtreecommitdiffstats
path: root/packer/provision/helm.yaml
blob: 68291114e314009a1f4880975604fbfc4b96dfad (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
---
- import_playbook: ../common-packer/provision/baseline.yaml

- hosts: all
  become_user: root
  become_method: sudo

  vars:
    kubectl_version: 1.8.6
    helm_version: 2.6.1

  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: yes

    - name: 'Install Helm {{helm_version}}'
      block:
        - name: 'Fetch tar.gz'
          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'
          unarchive:
            src: /tmp/helm-v{{helm_version}}-linux-amd64.tar.gz
            dest: /tmp
            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'
          become: yes
        - name: 'Check helm.'
          command: 'which helm'
        - name: 'Check kubectl.'
          command: 'which kubectl'