From 76f91bdfe4e183526e19b0afc6bf85fb1f140b54 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 7 Jan 2019 09:55:21 -0800 Subject: [PATCH] hack/build: Bump RHCOS from 47.245 to 47.249 To fix a bug where Ignition was run on every boot (when it should only run on the first boot). --- CHANGELOG.md | 8 ++++++++ hack/build.sh | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f61ddd70bc..027f167e991 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 0.9.1 - 2019-01-07 + +### Changed + +- Bumped the pinned RHCOS from 47.245 to 47.249 to fix a bug where + Ignition was run on every boot (when it should only run on the first + boot). + ## 0.9.0 - 2019-01-05 ### Added diff --git a/hack/build.sh b/hack/build.sh index 13b973cfd1c..3d2949e3a86 100755 --- a/hack/build.sh +++ b/hack/build.sh @@ -3,7 +3,7 @@ set -ex RELEASE_IMAGE="${RELEASE_IMAGE:-quay.io/openshift-release-dev/ocp-release:4.0.0-9}" -RHCOS_BUILD_NAME="${RELEASE_BUILD_NAME:-47.245}" +RHCOS_BUILD_NAME="${RELEASE_BUILD_NAME:-47.249}" # shellcheck disable=SC2068 version() { IFS="."; printf "%03d%03d%03d\\n" $@; unset IFS;}