Skip to content

Commit

Permalink
Remove 1-22
Browse files Browse the repository at this point in the history
  • Loading branch information
tatlat committed Oct 16, 2023
1 parent e3ec81c commit bd83773
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 309 deletions.
101 changes: 0 additions & 101 deletions generatebundlefile/data/bundles_dev/1-22.yaml

This file was deleted.

101 changes: 0 additions & 101 deletions generatebundlefile/data/bundles_prod/1-22.yaml

This file was deleted.

101 changes: 0 additions & 101 deletions generatebundlefile/data/bundles_staging/1-22.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion generatebundlefile/hack/generate_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fi
make build
chmod +x ${BASE_DIRECTORY}/generatebundlefile/bin

for version in 1-22 1-23 1-24 1-25 1-26 1-27 1-28; do
for version in 1-23 1-24 1-25 1-26 1-27 1-28; do
generate ${version} "dev"
push ${version}
done
4 changes: 2 additions & 2 deletions generatebundlefile/hack/release_prod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ fi

export AWS_PROFILE=prod
export AWS_CONFIG_FILE=${BASE_DIRECTORY}/generatebundlefile/prodconfigfile
for version in 1-22 1-23 1-24 1-25 1-26 1-27 1-28; do
for version in 1-23 1-24 1-25 1-26 1-27 1-28; do
generate ${version} "prod"
done

aws ecr-public get-login-password --region us-east-1 | HELM_EXPERIMENTAL_OCI=1 helm registry login --username AWS --password-stdin public.ecr.aws

for version in 1-22 1-23 1-24 1-25 1-26 1-27 1-28; do
for version in 1-23 1-24 1-25 1-26 1-27 1-28; do
push ${version}
done
6 changes: 3 additions & 3 deletions generatebundlefile/hack/release_staging.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,19 +86,19 @@ fi
# Generate Bundles from Public ECR
export AWS_PROFILE=staging
export AWS_CONFIG_FILE=${BASE_DIRECTORY}/generatebundlefile/stagingconfigfile
for version in 1-22 1-23 1-24 1-25 1-26 1-27 1-28; do
for version in 1-23 1-24 1-25 1-26 1-27 1-28; do
generate ${version} "staging"
done

# Push Bundles to Public ECR
aws ecr-public get-login-password --region us-east-1 | HELM_EXPERIMENTAL_OCI=1 helm registry login --username AWS --password-stdin public.ecr.aws
for version in 1-22 1-23 1-24 1-25 1-26 1-27 1-28; do
for version in 1-23 1-24 1-25 1-26 1-27 1-28; do
push ${version}
done

# Check images from Bundle in Private ECR
export AWS_CONFIG_FILE=${BASE_DIRECTORY}/generatebundlefile/configfile
export AWS_PROFILE=packages
for version in 1-22 1-23 1-24 1-25 1-26 1-27 1-28; do
for version in 1-23 1-24 1-25 1-26 1-27 1-28; do
regionCheck ${version}
done

0 comments on commit bd83773

Please sign in to comment.