Last active
December 16, 2020 16:19
-
-
Save lifeofguenter/6321b1684961d216405e28359d51c9a9 to your computer and use it in GitHub Desktop.
Spinnaker on Fargate - https://www.lifeofguenter.de/2020/10/running-spinnaker-on-ecsfargate.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG spinnaker_version | |
FROM us-docker.pkg.dev/spinnaker-community/docker/front50:spinnaker-${spinnaker_version} | |
COPY services/front50/*.yml /opt/front50/config/ | |
COPY spinnaker.yml /opt/front50/config/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SHELL := bash | |
bold := $(shell tput bold) | |
sgr0 := $(shell tput sgr0) | |
SPINNAKER_VERSION ?= $(shell cat "$(CURDIR)/version.txt") | |
.PHONY: build | |
build: services/* | |
@for tag in $^ ; do \ | |
echo -e "👷🔨 $(bold)Building: $${tag##*/}$(sgr0) 👷🔨" ; \ | |
docker build \ | |
--pull \ | |
--build-arg 'spinnaker_version=$(SPINNAKER_VERSION)' \ | |
-t "spinnaker:$${tag##*/}" \ | |
-f "$${tag}/Dockerfile" . || exit 1 ; \ | |
echo -e "\n" ; \ | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global: | |
spinnaker: | |
timezone: UTC | |
services: | |
clouddriver: | |
baseUrl: ${SPINNAKER_CLOUDDRIVER_BASEURL:http://localhost:7002} | |
enabled: true | |
deck: | |
baseUrl: ${SPINNAKER_DECK_BASEURL:http://localhost:9000} | |
enabled: true | |
echo: | |
baseUrl: ${SPINNAKER_ECHO_BASEURL:http://localhost:8089} | |
enabled: true | |
front50: | |
baseUrl: ${SPINNAKER_FRONT50_BASEURL:http://localhost:8080} | |
enabled: true | |
gate: | |
baseUrl: ${SPINNAKER_GATE_BASEURL:http://localhost:8084} | |
enabled: true | |
igor: | |
baseUrl: ${SPINNAKER_IGOR_BASEURL:http://localhost:8088} | |
enabled: true | |
orca: | |
baseUrl: ${SPINNAKER_ORCA_BASEURL:http://localhost:8083} | |
enabled: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment