Skip to content

Commit a1eac3b

Browse files
committed
Merge remote-tracking branch 'origin/release-4.14' into merge_4.14_to_master
2 parents 9b0a5fd + 440a9f7 commit a1eac3b

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

build-patched-kao-kcmo-images.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ rm -fr crc-cluster-kube-controller-manager-operator
2323
rm -fr crc-dnsmasq
2424
rm -fr crc-routes-controller
2525

26-
readonly OCP_VERSION=4.13
26+
readonly OCP_VERSION=4.14
2727

2828
function check_pull_secret() {
2929
if [ -z "${OPENSHIFT_PULL_SECRET_PATH-}" ]; then
@@ -38,14 +38,14 @@ function check_pull_secret() {
3838
check_pull_secret
3939

4040
HOST_ARCH=$(uname -m)
41-
MIRROR=${MIRROR:-https://mirror.openshift.com/pub/openshift-v4/$HOST_ARCH/clients/ocp}
41+
MIRROR=${MIRROR:-https://mirror.openshift.com/pub/openshift-v4/$HOST_ARCH/clients/ocp-dev-preview}
4242

4343
# If user defined the OPENSHIFT_VERSION environment variable then use it.
4444
if test -n "${OPENSHIFT_VERSION-}"; then
4545
OPENSHIFT_RELEASE_VERSION=${OPENSHIFT_VERSION}
4646
echo "Using release ${OPENSHIFT_RELEASE_VERSION} from OPENSHIFT_VERSION"
4747
else
48-
OPENSHIFT_RELEASE_VERSION="$(curl -L "${MIRROR}"/latest-${OCP_VERSION}/release.txt | sed -n 's/^ *Version: *//p')"
48+
OPENSHIFT_RELEASE_VERSION="$(curl -L "${MIRROR}"/candidate-${OCP_VERSION}/release.txt | sed -n 's/^ *Version: *//p')"
4949
if test -n "${OPENSHIFT_RELEASE_VERSION}"; then
5050
echo "Using release ${OPENSHIFT_RELEASE_VERSION} from the mirror"
5151
else

install-config.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,8 @@ capabilities:
3737
- openshift-samples
3838
- marketplace
3939
- Console
40+
- MachineAPI
41+
- ImageRegistry
42+
- DeploymentConfig
43+
- Build
4044
publish: External

snc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ if test -n "${OPENSHIFT_VERSION-}"; then
4444
OPENSHIFT_RELEASE_VERSION=${OPENSHIFT_VERSION}
4545
echo "Using release ${OPENSHIFT_RELEASE_VERSION} from OPENSHIFT_VERSION"
4646
else
47-
OPENSHIFT_RELEASE_VERSION="$(curl -L "${MIRROR}"/latest-4.13/release.txt | sed -n 's/^ *Version: *//p')"
47+
OPENSHIFT_RELEASE_VERSION="$(curl -L "${MIRROR}"/candidate-4.14/release.txt | sed -n 's/^ *Version: *//p')"
4848
if test -n "${OPENSHIFT_RELEASE_VERSION}"; then
4949
echo "Using release ${OPENSHIFT_RELEASE_VERSION} from the latest mirror"
5050
else

0 commit comments

Comments
 (0)