summaryrefslogtreecommitdiffstats
path: root/packer
diff options
context:
space:
mode:
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>2020-11-26 10:25:39 +0100
committerSylvain Desbureaux <sylvain.desbureaux@orange.com>2020-12-08 12:05:58 +0100
commit5657eda41a8b8e5d25582551fceff54da27110af (patch)
tree691f4f1cacd6d564431c3473b9d98790b237905b /packer
parent5d7016befaaf507712ce88bdbe6fe7eb14d3448c (diff)
[OOM] add helm3 linting
As OOM supports helm2 and helm3, it's important to check that all new additions don't break helm3 support. Issue-ID: OOM-1 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I38307e3b105606eb3dded1933e3a90673078d4dc [Add helm3 job template boilerplate] Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
Diffstat (limited to 'packer')
-rw-r--r--packer/provision/helm.yaml37
1 files changed, 36 insertions, 1 deletions
diff --git a/packer/provision/helm.yaml b/packer/provision/helm.yaml
index daecffee9..def9d8940 100644
--- a/packer/provision/helm.yaml
+++ b/packer/provision/helm.yaml
@@ -8,6 +8,8 @@
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}}'
@@ -21,7 +23,7 @@
block:
- name: 'Fetch tar.gz'
get_url:
- url: http://storage.googleapis.com/kubernetes-helm/helm-v{{helm_version}}-linux-amd64.tar.gz
+ 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:
@@ -34,5 +36,38 @@
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: "http://storage.googleapis.com/kubernetes-helm/helm-v{{helm3_version}}-linux-amd64.tar.gz"
+ dest: /tmp/helm3/helm-v{{helm3_version}}-linux-amd64.tar.gz
+ - 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 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'