Skip to content

Commit 783056a

Browse files
committed
cut 0.88.0
1 parent 5f56a56 commit 783056a

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
BUNDLE_VERSION = 4.1.0
16-
CRC_VERSION = 0.87.0-alpha
15+
BUNDLE_VERSION = 4.1.3
16+
CRC_VERSION = 0.88.0-alpha
1717
COMMIT_SHA=$(shell git rev-parse --short HEAD)
1818

1919
# Go and compilation related variables

centos_ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ function upload_logs() {
104104

105105
function run_tests() {
106106
set +e
107-
make integration BUNDLE_LOCATION="/root/Downloads/crc_libvirt_4.1.0.tar.xz"
107+
make integration BUNDLE_LOCATION="/root/Downloads/crc_libvirt_4.1.3.tar.xz"
108108
if [[ $? -ne 0 ]]; then
109109
upload_logs $1
110110
exit 1

pkg/crc/constants/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const (
1616

1717
CrcEnvPrefix = "CRC"
1818

19-
DefaultHostname = "crc-4gdnp-master-0"
19+
DefaultHostname = "crc-cvgnz-master-0"
2020
DefaultWebConsoleURL = "https://console-openshift-console.apps-crc.testing"
2121
DefaultAPIURL = "https://api.crc.testing:6443"
2222
DefaultDiskImage = "crc.disk"

pkg/crc/constants/constants_darwin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ package constants
33
const (
44
OcBinaryName = "oc"
55
DefaultOcURL = "https://mirror.openshift.com/pub/openshift-v4/clients/oc/latest/macosx/oc.tar.gz"
6-
DefaultBundle = "crc_vbox_4.1.0.tar.xz"
6+
DefaultBundle = "crc_hyperkit_4.1.3.tar.xz"
77
)

pkg/crc/constants/constants_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ package constants
33
const (
44
OcBinaryName = "oc"
55
DefaultOcURL = "https://mirror.openshift.com/pub/openshift-v4/clients/oc/latest/linux/oc.tar.gz"
6-
DefaultBundle = "crc_libvirt_4.1.0.tar.xz"
6+
DefaultBundle = "crc_libvirt_4.1.3.tar.xz"
77
)

pkg/crc/constants/constants_windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ const (
44
OcBinaryName = "oc.exe"
55
DefaultOcURL = "https://mirror.openshift.com/pub/openshift-v4/clients/oc/latest/windows/oc.zip"
66
// TODO: we will change once we have correct bundle for windows
7-
DefaultBundle = "crc_vbox_4.1.0.tar.xz"
7+
DefaultBundle = "crc_hyperv_4.1.3.tar.xz"
88
)

test/integration/features/config.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ Checks whether CRC `config set` command works as expected in conjunction with `c
1313
@darwin
1414
Examples: Config settings on Mac
1515
| property | value1 | value2 |
16-
| bundle | crc_vbox_4.1.0.tar.xz | /path/to/fake/bundle/crc_vbox_4.1.0.tar.xz |
16+
| bundle | crc_vbox_4.1.3.tar.xz | /path/to/fake/bundle/crc_vbox_4.1.3.tar.xz |
1717
| cpus | 4 | 3 |
1818
| memory | 8192 | 4096 |
1919
| vm-driver | virtualbox | libvirt |
2020

2121
@linux
2222
Examples: Config settings on Linux
2323
| property | value1 | value2 |
24-
| bundle | crc_libvirt_4.1.0.tar.xz | /path/to/nonexistent/bundle/crc_libvirt_4.1.0.tar.xz |
24+
| bundle | crc_libvirt_4.1.3.tar.xz | /path/to/nonexistent/bundle/crc_libvirt_4.1.3.tar.xz |
2525
| cpus | 4 | 3 |
2626
| memory | 8192 | 4096 |
2727
| vm-driver | libvirt | hyperkit |

0 commit comments

Comments
 (0)