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.
Investigate issue with image tagging (#410)
* Move envs into $BASH_ENV * AWS CLI orb
- Loading branch information
1 parent
b1c7f2d
commit 04b8bda
Showing
1 changed file
with
11 additions
and
16 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: | ||
|
@@ -111,35 +112,29 @@ commands: | |
tag: | ||
type: string | ||
steps: | ||
- run: | ||
name: Setup Environment Variables | ||
command: | | ||
echo "export REGISTRY=public.ecr.aws/sumologic" >> $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 | ||
environment: | ||
REGISTRY: public.ecr.aws/sumologic | ||
TAG_URL: ${REGISTRY}/<< parameters.repo >>:<< parameters.tag >> | ||
LATEST_URL: ${REGISTRY}/<< parameters.repo >>:latest | ||
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 }} | ||
REGISTRY: public.ecr.aws/sumologic | ||
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 | ||
environment: | ||
REGISTRY: public.ecr.aws/sumologic | ||
TAG_URL: ${REGISTRY}/<< parameters.repo >>:<< parameters.tag >> | ||
LATEST_URL: ${REGISTRY}/<< parameters.repo >>:latest | ||
command: | | ||
docker push ${TAG_URL} | ||
docker push ${LATEST_URL} | ||
workflows: | ||
version: 2 | ||
stability-tests: | ||
|
@@ -556,4 +551,4 @@ jobs: | |
fi | ||
- persist_to_workspace: | ||
root: ~/ | ||
paths: project/dist/*.<< parameters.package_type >> | ||
paths: project/dist/*.<< parameters.package_type >> |