Skip to content

Commit

Permalink
Merge pull request #1887 from bassam/pr-fix-arm64
Browse files Browse the repository at this point in the history
fix arm64 image builds
  • Loading branch information
travisn committed Jul 18, 2018
2 parents 363e5ee + 1289bec commit d537df8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 0 additions & 3 deletions images/Makefile
Expand Up @@ -16,9 +16,6 @@ include image.mk

PLATFORMS ?= linux_amd64 linux_arm64

CEPH_BASE_IMAGE ?= ceph/daemon-base:v3.0.5-stable-3.0-luminous-centos-7-$(PLATFORM_ARCH)
export CEPH_BASE_IMAGE

# tini's version
export TINI_VERSION = v0.16.1

Expand Down
3 changes: 2 additions & 1 deletion images/ceph-toolbox/Makefile
Expand Up @@ -19,7 +19,8 @@ TOOLBOX_BASE_IMAGE = $(BUILD_REGISTRY)/ceph-toolbox-base-$(GOARCH)
IMAGES = $(TOOLBOX_IMAGE) $(TOOLBOX_BASE_IMAGE)
CACHE_IMAGES = $(TOOLBOX_BASE_IMAGE)

BASEIMAGE = $(CEPH_BASE_IMAGE)
CEPH_VERSION = $(shell cat ../ceph/ceph_version)
BASEIMAGE = $(CEPH_VERSION)-$(PLATFORM_ARCH)

TEMP := $(shell mktemp -d)

Expand Down
3 changes: 2 additions & 1 deletion images/ceph/Makefile
Expand Up @@ -20,7 +20,8 @@ include ../image.mk
CEPH_IMAGE = $(BUILD_REGISTRY)/ceph-$(GOARCH)
IMAGES = $(CEPH_IMAGE)

BASEIMAGE = $(CEPH_BASE_IMAGE)
CEPH_VERSION = $(shell cat ceph_version)
BASEIMAGE = $(CEPH_VERSION)-$(PLATFORM_ARCH)

TEMP := $(shell mktemp -d)

Expand Down
1 change: 1 addition & 0 deletions images/ceph/ceph_version
@@ -0,0 +1 @@
ceph/daemon-base:v3.0.5-stable-3.0-luminous-centos-7

0 comments on commit d537df8

Please sign in to comment.