Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ KIC_VERSION ?= $(shell grep -E "Version =" pkg/drivers/kic/types.go | cut -d \"
HUGO_VERSION ?= $(shell grep -E "HUGO_VERSION = \"" netlify.toml | cut -d \" -f2)

# Default to .0 for higher cache hit rates, as build increments typically don't require new ISO versions
ISO_VERSION ?= v1.37.0-1762018871-21834
ISO_VERSION ?= v1.37.0-1762856121-21885

# Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta
DEB_VERSION ?= $(subst -,~,$(RAW_VERSION))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ sha256 b12ba86441c259225374640db1cbf915168a04d94e471ec936684df2f05423a0 v1.2.3.t
sha256 1ae11980477b789732915dfd7ba4246f5babe5ff76a31021d36365007d9713b0 v1.2.5.tar.gz
sha256 19b280702341f33ff353fa254d1dbdb67f6aab2c74395f6d651a17524f68e752 v1.2.6.tar.gz
sha256 3262492ce42bea0919ee1a2d000b6f303fd14877295bc38d094876b55fdd448b v1.3.0.tar.gz
sha256 3da010af5c2c1c3d12d460255e4a7dc049c223ebc629c80fbbe4c10720997ffe v1.3.3.tar.gz
4 changes: 2 additions & 2 deletions deploy/iso/minikube-iso/package/runc-master/runc-master.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#
################################################################################

RUNC_MASTER_VERSION = v1.3.0
RUNC_MASTER_COMMIT = 4ca628d1d4c974f92d24daccb901aa078aad748e
RUNC_MASTER_VERSION = v1.3.3
RUNC_MASTER_COMMIT = d842d7719497cc3b774fd71620278ac9e17710e0
RUNC_MASTER_SITE = https://github.com/opencontainers/runc/archive
RUNC_MASTER_SOURCE = $(RUNC_MASTER_VERSION).tar.gz
RUNC_MASTER_LICENSE = Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion pkg/minikube/download/iso.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const fileScheme = "file"
// DefaultISOURLs returns a list of ISO URL's to consult by default, in priority order
func DefaultISOURLs() []string {
v := version.GetISOVersion()
isoBucket := "minikube-builds/iso/21834"
isoBucket := "minikube-builds/iso/21885"

return []string{
fmt.Sprintf("https://storage.googleapis.com/%s/minikube-%s-%s.iso", isoBucket, v, runtime.GOARCH),
Expand Down
Loading