Remove openshift/installer vendored dependency script (#3301)

This commit is contained in:
Ben Vesel 2023-12-04 16:34:32 -05:00 коммит произвёл GitHub
Родитель 232d3bc536
Коммит 14d5b29238
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 0 добавлений и 12 удалений

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

@ -78,12 +78,6 @@ linters-settings:
alias: openapi_v2
- pkg: github.com/openshift/console-operator/pkg/api
alias: consoleapi
- pkg: github.com/openshift/installer/pkg/asset/installconfig/azure
alias: icazure
- pkg: github.com/openshift/installer/pkg/rhcos
alias: rhcospkg
- pkg: github.com/openshift/installer/pkg/types/azure
alias: azuretypes
- pkg: github.com/openshift/machine-api-operator/pkg/apis/machine/v1beta1
alias: machinev1beta1
- pkg: github.com/openshift/machine-api-operator/pkg/generated/clientset/versioned

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

@ -33,10 +33,6 @@ for x in vendor/github.com/openshift/*; do
vendor/github.com/openshift/hive)
;;
# Replace the installer with our own fork below in this script.
vendor/github.com/openshift/installer)
;;
# Inconsistent imports: some of our dependencies import it as github.com/metal3-io/cluster-api-provider-baremetal
# but in some places directly from the openshift fork.
# Replace github.com/metal3-io/cluster-api-provider-baremetal with an openshift fork in go.mod
@ -64,8 +60,6 @@ for x in aws azure openstack; do
go mod edit -replace sigs.k8s.io/cluster-api-provider-$x=$(go list -mod=mod -m github.com/openshift/cluster-api-provider-$x@release-4.10 | sed -e 's/ /@/')
done
go mod edit -replace github.com/openshift/installer=$(go list -mod=mod -m github.com/jewzaam/installer-aro@release-4.10-azure | sed -e 's/ /@/')
go get -u ./...
go mod tidy -compat=1.18