1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-06 09:47:02 +01:00

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).
This commit is contained in:
W. Trevor King
2019-01-07 09:55:21 -08:00
parent b6ee45c785
commit 76f91bdfe4
2 changed files with 9 additions and 1 deletions

View File

@@ -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

View File

@@ -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;}