Skip to content

Commit a899afc

Browse files
authored
Merge pull request kubernetes#23438 from oxkrypton/fix/nerdctl-bin-tabs
fix: replace spaces with tabs in nerdctl-bin Buildroot package files
2 parents e50b640 + 7b0bc02 commit a899afc

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ KIC_VERSION ?= $(shell grep -E "Version =" pkg/drivers/kic/types.go | cut -d \"
2424
HUGO_VERSION ?= $(shell grep -E "HUGO_VERSION = \"" netlify.toml | cut -d \" -f2)
2525

2626
# Default to .0 for higher cache hit rates, as build increments typically don't require new ISO versions
27-
ISO_VERSION ?= v1.38.0-1786530282-23482
27+
ISO_VERSION ?= v1.38.0-1786724147-23438
2828

2929
# Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta
3030
DEB_VERSION ?= $(subst -,~,$(RAW_VERSION))
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
config BR2_PACKAGE_NERDCTL_BIN_AARCH64
2-
bool "nerdctl-bin"
3-
default y
4-
depends on BR2_aarch64
2+
bool "nerdctl-bin"
3+
default y
4+
depends on BR2_aarch64

deploy/iso/minikube-iso/arch/aarch64/package/nerdctl-bin-aarch64/nerdctl-bin.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ NERDCTL_BIN_AARCH64_SOURCE = nerdctl-$(NERDCTL_BIN_AARCH64_VERSION)-linux-arm64.
1111
NERDCTL_BIN_AARCH64_STRIP_COMPONENTS = 0
1212

1313
define NERDCTL_BIN_AARCH64_INSTALL_TARGET_CMDS
14-
$(INSTALL) -D -m 0755 \
15-
$(@D)/nerdctl \
16-
$(TARGET_DIR)/usr/bin/nerdctl
14+
$(INSTALL) -D -m 0755 \
15+
$(@D)/nerdctl \
16+
$(TARGET_DIR)/usr/bin/nerdctl
1717
endef
1818

1919
$(eval $(generic-package))
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
config BR2_PACKAGE_NERDCTL_BIN
2-
bool "nerdctl-bin"
3-
default y
4-
depends on BR2_x86_64
2+
bool "nerdctl-bin"
3+
default y
4+
depends on BR2_x86_64

deploy/iso/minikube-iso/arch/x86_64/package/nerdctl-bin/nerdctl-bin.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ NERDCTL_BIN_SOURCE = nerdctl-$(NERDCTL_BIN_AARCH64_VERSION)-linux-amd64.tar.gz
1111
NERDCTL_BIN_STRIP_COMPONENTS = 0
1212

1313
define NERDCTL_BIN_INSTALL_TARGET_CMDS
14-
$(INSTALL) -D -m 0755 \
15-
$(@D)/nerdctl \
16-
$(TARGET_DIR)/usr/bin/nerdctl
14+
$(INSTALL) -D -m 0755 \
15+
$(@D)/nerdctl \
16+
$(TARGET_DIR)/usr/bin/nerdctl
1717
endef
1818

1919
$(eval $(generic-package))

pkg/minikube/download/iso.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const fileScheme = "file"
4141
// DefaultISOURLs returns a list of ISO URL's to consult by default, in priority order
4242
func DefaultISOURLs() []string {
4343
v := version.GetISOVersion()
44-
isoBucket := "minikube-builds/iso/23482"
44+
isoBucket := "minikube-builds/iso/23438"
4545

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

0 commit comments

Comments
 (0)