| --- |
| - import_playbook: ../common-packer/provision/docker.yaml |
| |
| - hosts: all |
| become_user: root |
| become_method: sudo |
| |
| vars: |
| kubectl_version: 1.15.11 |
| helm_version: 2.16.6 |
| helm3_version: 3.3.4 |
| 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" |
| 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: 'Install Helm3 {{helm3_version}}' |
| block: |
| - name: create directory |
| file: |
| path: /tmp/helm3 |
| state: directory |
| - name: 'Fetch tar.gz' |
| get_url: |
| url: "https://get.helm.sh/helm-v{{helm3_version}}-linux-amd64.tar.gz" |
| dest: /tmp/helm3 |
| - name: 'Unarchive' |
| unarchive: |
| src: "/tmp/helm3/helm-v{{helm3_version}}-linux-amd64.tar.gz" |
| dest: /tmp/helm3 |
| 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' |
| become: yes |
| - name: 'Check helm3.' |
| command: 'which helm3' |
| - name: 'Check kubectl.' |
| command: 'which kubectl' |
| |
| - name: Install helm3 |
| shell: | |
| echo "----> Installing helm3" |
| wget 'https://get.helm.sh/helm-v3.3.4-linux-amd64.tar.gz' |
| tar -xvf 'https://get.helm.sh/helm-v3.3.4-linux-amd64.tar.gz' |
| mv linux-amd64/helm /usr/local/bin/helm3 |
| which helm3 |
| become: true |
| |
| - name: 'Install ChartMuseum {{chartmuseum_version}}' |
| block: |
| - name: 'Fetch bin' |
| 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.' |
| command: 'which chartmuseum' |