forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
449dd3b
commit 9acd5eb
Showing
1 changed file
with
5 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ parameters: | |
|
||
orbs: | ||
win: circleci/[email protected] | ||
aws-cli: circleci/[email protected] | ||
|
||
executors: | ||
golang: | ||
|
@@ -115,22 +116,18 @@ commands: | |
name: Setup Environment Variables | ||
command: | | ||
echo "export REGISTRY=public.ecr.aws/sumologic" >> $BASH_ENV | ||
echo "export TAG_URL=${REGISTRY}/<< parameters.repo >>:<< parameters.tag >>" >> $BASH_ENV | ||
echo "export LATEST_URL${REGISTRY}/<< parameters.repo >>:latest" >> $BASH_ENV | ||
echo "export TAG_URL=public.ecr.aws/sumologic/<< parameters.repo >>:<< parameters.tag >>" >> $BASH_ENV | ||
echo "export LATEST_URL=public.ecr.aws/sumologic/<< parameters.repo >>:latest" >> $BASH_ENV | ||
- run: | ||
name: Build image | ||
command: | | ||
make docker-otelcontribcol | ||
docker tag otelcontribcol:latest ${TAG_URL} | ||
docker tag otelcontribcol:latest ${LATEST_URL} | ||
- aws-cli/install | ||
- run: | ||
name: Login to AWS ECR | ||
environment: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_PUBLIC_ECR_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_PUBLIC_ECR_SECRET_ACCESS_KEY }} | ||
command: | | ||
aws ecr get-login-password --region us-east-1 | ||
| docker login --username AWS --password-stdin ${REGISTRY} | ||
command: aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin ${REGISTRY} | ||
- run: | ||
name: Push image | ||
command: | | ||
|