Update packer-version to 1.4.3 01/16601/3
authorSuresh Channamallu <schannamallu@linuxfoundation.org>
Mon, 19 Aug 2019 18:52:59 +0000 (14:52 -0400)
committerSuresh Channamallu <schannamallu@linuxfoundation.org>
Mon, 19 Aug 2019 19:18:54 +0000 (15:18 -0400)
This new packer version fixed an issues in
docker image, where its unable to install the
packages into docker containers due to checking
of wrong container OS.

Fix in 1.4.3:
builder/docker: Check container os, not host os,
when creating container dir default [GH-7939]

Issue: RELENG-2180
Signed-off-by: Suresh Channamallu <schannamallu@linuxfoundation.org>
Change-Id: I3fe36e5669942d1f7fadfd2b711f9d7a3ca1e5a9

jjb/lf-ci-jobs.yaml
releasenotes/notes/upgrade-packer-version-to-1_4_3-80fd06b6d4865ffb.yaml [new file with mode: 0644]

index 4d5dd2e..0a96fd8 100644 (file)
@@ -29,7 +29,7 @@
     submodule-timeout: 10
     submodule-disable: false
     packer-cloud-settings: packer-cloud-env
-    packer-version: 1.4.0
+    packer-version: 1.4.3
 
     #####################
     # Job Configuration #
diff --git a/releasenotes/notes/upgrade-packer-version-to-1_4_3-80fd06b6d4865ffb.yaml b/releasenotes/notes/upgrade-packer-version-to-1_4_3-80fd06b6d4865ffb.yaml
new file mode 100644 (file)
index 0000000..194d7f1
--- /dev/null
@@ -0,0 +1,10 @@
+---
+upgrade:
+  - |
+    Update packer version to 1.4.3.
+    This new packer version fixed an issues in docker
+    image, where its unable to install the packages into
+    docker containers due to checking of wrong container OS.
+    Fix in 1.4.3:
+    builder/docker: Check container os, not host os,
+    when creating container dir default [GH-7939]