Skip to content

Commit

Permalink
Fix multi-arch docker push
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprodan committed Sep 11, 2018
1 parent 6c98fbf commit f8ec9c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ docker-build: tar
.PHONY: docker-push
docker-push:
@echo Pushing: $(VERSION) to $(DOCKER_IMAGE_NAME)
for arch in $(LINUX_ARCH); do \
docker push $(DOCKER_IMAGE_NAME):$(NAME)-$$arch ;\
done
for arch in $(LINUX_ARCH); do \
docker push $(DOCKER_IMAGE_NAME):$(NAME)-$$arch ;\
done
manifest-tool push from-args --platforms $(PLATFORMS) --template $(DOCKER_IMAGE_NAME):podinfo-ARCH --target $(DOCKER_IMAGE_NAME):$(VERSION)
manifest-tool push from-args --platforms $(PLATFORMS) --template $(DOCKER_IMAGE_NAME):podinfo-ARCH --target $(DOCKER_IMAGE_NAME):latest

Expand Down
3 changes: 1 addition & 2 deletions docs/8-istio-openfaas.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,7 @@ helm upgrade --install openfaas ./chart/openfaas \
--set securityContext=true \
--set basic_auth=true \
--set exposeServices=false \
--set operator.createCRD=true \
--set gateway.image=stefanprodan/gateway:istio5
--set operator.createCRD=true
```

Wait for OpenFaaS Gateway to come online:
Expand Down

0 comments on commit f8ec9c0

Please sign in to comment.