Skip to content

Commit

Permalink
Update to use our registry
Browse files Browse the repository at this point in the history
  • Loading branch information
rsyvarth committed Jul 11, 2019
1 parent fd327af commit be023b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- setup_remote_docker
- run:
command: |
docker login -u="$DOCKER_USER" -p="$DOCKER_PASS"
docker login -u $DOCKER_USER -p $DOCKER_PASS quay.io
make build push
workflows:
version: 2
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
TAG ?= $(shell git describe --tags --abbrev=0 HEAD)

build:
docker build . -t mumoshu/aws-ssm-agent:${TAG}
docker build . -t quay.io/innervate/aws-ssm-agent:${TAG}

push:
docker push mumoshu/aws-ssm-agent:${TAG}
docker push quay.io/innervate/aws-ssm-agent:${TAG}

run:
docker run --rm -it mumoshu/aws-ssm-agent:${TAG}
docker run --rm -it quay.io/innervate/aws-ssm-agent:${TAG}

deploy:
hack/deploy
2 changes: 1 addition & 1 deletion daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
hostNetwork: true
containers:
- image: mumoshu/aws-ssm-agent:v0.1.0
- image: quay.io/innervate/aws-ssm-agent:v0.1.2
name: ssm-agent
securityContext:
runAsUser: 0
Expand Down

0 comments on commit be023b1

Please sign in to comment.