remove SRC_AUTH_GENEVA: anonymous read is now enabled

This commit is contained in:
Jim Minter 2021-02-05 16:48:37 -06:00
Родитель 1a64dc1c5e
Коммит d36292ebce
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 0730CBDA10D1A2D3
3 изменённых файлов: 1 добавлений и 10 удалений

Просмотреть файл

@ -34,7 +34,6 @@ jobs:
- template: ./templates/template-mirror-images.yml
parameters:
dstAuth: $(acr-push-auth)
srcAuthGeneva: $(acr-geneva-pull-auth)
srcAuthQuay: $(quay-pull-auth)
srcAuthRedhat: $(redhat-pull-auth)
dstACRName: $(dst-acr-name)

Просмотреть файл

@ -2,7 +2,6 @@ parameters:
deployerDirectory: ''
dstAuth: ''
dstACRName: ''
srcAuthGeneva: ''
srcAuthQuay: ''
srcAuthRedhat: ''
@ -12,7 +11,6 @@ steps:
export DST_AUTH=${{ parameters.dstAuth }}
export DST_ACR_NAME=${{ parameters.dstACRName }}
export SRC_AUTH_GENEVA=${{ parameters.srcAuthGeneva }}
export SRC_AUTH_QUAY=${{ parameters.srcAuthQuay }}
export SRC_AUTH_REDHAT=${{ parameters.srcAuthRedhat }}

Просмотреть файл

@ -35,7 +35,6 @@ func mirror(ctx context.Context, log *logrus.Entry) error {
for _, key := range []string{
"DST_AUTH",
"DST_ACR_NAME",
"SRC_AUTH_GENEVA",
"SRC_AUTH_QUAY",
"SRC_AUTH_REDHAT",
} {
@ -58,11 +57,6 @@ func mirror(ctx context.Context, log *logrus.Entry) error {
dstAcr, _ := os.LookupEnv("DST_ACR_NAME")
srcAuthGeneva, err := getAuth("SRC_AUTH_GENEVA")
if err != nil {
return err
}
srcAuthQuay, err := getAuth("SRC_AUTH_QUAY")
if err != nil {
return err
@ -105,7 +99,7 @@ func mirror(ctx context.Context, log *logrus.Entry) error {
version.MdmImage("linuxgeneva-microsoft" + acrDomainSuffix),
} {
log.Printf("mirroring %s -> %s", ref, pkgmirror.Dest(dstAcr+acrDomainSuffix, ref))
err = pkgmirror.Copy(ctx, pkgmirror.Dest(dstAcr+acrDomainSuffix, ref), ref, dstAuth, srcAuthGeneva)
err = pkgmirror.Copy(ctx, pkgmirror.Dest(dstAcr+acrDomainSuffix, ref), ref, dstAuth, nil)
if err != nil {
log.Errorf("%s: %s\n", ref, err)
errorOccurred = true