From 0cf0f89122120524f5468ae1334fa1e705ad679f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 19:57:06 +0000 Subject: [PATCH] chore(deps): update github.com/openshift/api digest to 4c26c14 --- go.mod | 4 +- go.sum | 2 + vendor/github.com/openshift/api/.gitignore | 2 + .../github.com/openshift/api/Dockerfile.rhel8 | 35 +++++++++++++++ vendor/github.com/openshift/api/Makefile | 44 +++++++++++++++++++ .../0000_10_config-operator_01_image.crd.yaml | 2 +- .../openshift/api/config/v1/types_image.go | 4 +- .../v1/zz_generated.swagger_doc_generated.go | 2 +- .../api/kubecontrolplane/v1/types.go | 6 +-- .../v1/zz_generated.swagger_doc_generated.go | 2 +- .../openshift/api/legacyconfig/v1/types.go | 9 ++-- .../v1/zz_generated.swagger_doc_generated.go | 6 +-- .../api/openshiftcontrolplane/v1/types.go | 7 ++- .../v1/zz_generated.swagger_doc_generated.go | 2 +- vendor/modules.txt | 4 +- 15 files changed, 103 insertions(+), 28 deletions(-) create mode 100644 vendor/github.com/openshift/api/Dockerfile.rhel8 diff --git a/go.mod b/go.mod index 9b66c277a..2da25d72a 100644 --- a/go.mod +++ b/go.mod @@ -42,7 +42,7 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/nxadm/tail v1.4.8 // indirect - github.com/openshift/api v0.0.0-20230915112357-693d4b64813c + github.com/openshift/api v0.0.0-20230925155749-4c26c14d9ebb github.com/openshift/library-go v0.0.0-20230915122714-b753831a0dce github.com/openshift/machine-config-operator v0.0.1-0.20230815171034-c2bb862bc08a github.com/pborman/uuid v1.2.1 @@ -137,6 +137,6 @@ require ( ) replace ( - github.com/openshift/api => github.com/openshift/api v0.0.0-20230915112357-693d4b64813c + github.com/openshift/api => github.com/openshift/api v0.0.0-20230925155749-4c26c14d9ebb github.com/openshift/client-go => github.com/openshift/client-go v0.0.0-20230915115245-53bd8980dfb7 ) diff --git a/go.sum b/go.sum index 705488207..127e4529b 100644 --- a/go.sum +++ b/go.sum @@ -196,6 +196,8 @@ github.com/onsi/gomega v1.27.10 h1:naR28SdDFlqrG6kScpT8VWpu1xWY5nJRCF3XaYyBjhI= github.com/onsi/gomega v1.27.10/go.mod h1:RsS8tutOdbdgzbPtzzATp12yT7kM5I5aElG3evPbQ0M= github.com/openshift/api v0.0.0-20230915112357-693d4b64813c h1:ro/BvvpAikMoZc/fsxJN6jxmK+4uIbdNIK9nwaFQ5xo= github.com/openshift/api v0.0.0-20230915112357-693d4b64813c/go.mod h1:NFgA+laiQtptmjsp1trDnGqjV62nYzlUfQ6P5I9oqXA= +github.com/openshift/api v0.0.0-20230925155749-4c26c14d9ebb h1:fbfPxo7hcL5fquOX8luvfqZKVEyzFNQqh5peeBhZGsc= +github.com/openshift/api v0.0.0-20230925155749-4c26c14d9ebb/go.mod h1:qNtV0315F+f8ld52TLtPvrfivZpdimOzTi3kn9IVbtU= github.com/openshift/client-go v0.0.0-20230915115245-53bd8980dfb7 h1:+5WyBC1jCqbMwFNn+uW71zcarZshuD5NCnU0/tHHn+0= github.com/openshift/client-go v0.0.0-20230915115245-53bd8980dfb7/go.mod h1:ihUJrhBcYAGYQrJu/gP2OMgfVds5f5z5kbeLNBqjHLo= github.com/openshift/library-go v0.0.0-20230915122714-b753831a0dce h1:5ULL0+VCFzIXma7o0wnDddfVQ60/tNVv1uVvL2Ucm4M= diff --git a/vendor/github.com/openshift/api/.gitignore b/vendor/github.com/openshift/api/.gitignore index 760e2df44..1c3e4625d 100644 --- a/vendor/github.com/openshift/api/.gitignore +++ b/vendor/github.com/openshift/api/.gitignore @@ -17,3 +17,5 @@ _output/ tests/bin/ models-schema +/render +/write-available-featuresets diff --git a/vendor/github.com/openshift/api/Dockerfile.rhel8 b/vendor/github.com/openshift/api/Dockerfile.rhel8 new file mode 100644 index 000000000..62fa30b2c --- /dev/null +++ b/vendor/github.com/openshift/api/Dockerfile.rhel8 @@ -0,0 +1,35 @@ +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.20-openshift-4.15 AS builder +WORKDIR /go/src/github.com/openshift/api +COPY . . +ENV GO_PACKAGE github.com/openshift/api +RUN make build --warn-undefined-variables + +FROM registry.ci.openshift.org/ocp/4.14:base + +# copy the built binaries to /usr/bin +COPY --from=builder /go/src/github.com/openshift/api/render /usr/bin/ +COPY --from=builder /go/src/github.com/openshift/api/write-available-featuresets /usr/bin/ + +# this directory is used to produce rendered manifests that the installer applies (but does not maintain) in bootkube +RUN mkdir -p /usr/share/bootkube/manifests/manifests +COPY config/v1/*_config-operator_*.yaml /usr/share/bootkube/manifests/manifests +COPY quota/v1/*.crd.yaml /usr/share/bootkube/manifests/manifests +COPY security/v1/*.crd.yaml /usr/share/bootkube/manifests/manifests +COPY securityinternal/v1/*.crd.yaml /usr/share/bootkube/manifests/manifests +COPY authorization/v1/*.crd.yaml /usr/share/bootkube/manifests/manifests +COPY operator/v1alpha1/0000_10_config-operator_01_imagecontentsourcepolicy.crd.yaml /usr/share/bootkube/manifests/manifests + +# these are applied by the CVO +COPY manifests /manifests +# TODO copy these back when we're ready to make the switch from cluster-config-operator to here +#COPY config/v1/*_config-operator_*.yaml /manifests +#COPY quota/v1/*.crd.yaml /manifests +#COPY security/v1/*.crd.yaml /manifests +#COPY securityinternal/v1/*.crd.yaml /manifests +#COPY authorization/v1/*.crd.yaml /manifests +#COPY operator/v1alpha1/0000_10_config-operator_01_imagecontentsourcepolicy.crd.yaml /manifests +#COPY operator/v1/0000_10_config-operator_*.yaml /manifests +#COPY payload-command/empty-resources /manifests + +# TODO uncomment after all the other "add a new image" steps are complete. +#LABEL io.openshift.release.operator true diff --git a/vendor/github.com/openshift/api/Makefile b/vendor/github.com/openshift/api/Makefile index 2bdee10c9..69eee4376 100644 --- a/vendor/github.com/openshift/api/Makefile +++ b/vendor/github.com/openshift/api/Makefile @@ -125,3 +125,47 @@ integration: tests-vendor: make -C tests vendor + +################################## +# +# BEGIN: Build binaries and images +# +################################## + +.PHONY: build +build: render write-available-featuresets + +render: + go build --mod=vendor -trimpath github.com/openshift/api/payload-command/cmd/render + +write-available-featuresets: + go build --mod=vendor -trimpath github.com/openshift/api/payload-command/cmd/write-available-featuresets + +.PHONY: clean +clean: + rm render write-available-featuresets + +VERSION ?= $(shell git describe --always --abbrev=7) +MUTABLE_TAG ?= latest +IMAGE ?= registry.ci.openshift.org/openshift/api + +ifeq ($(shell command -v podman > /dev/null 2>&1 ; echo $$? ), 0) + ENGINE=podman +else ifeq ($(shell command -v docker > /dev/null 2>&1 ; echo $$? ), 0) + ENGINE=docker +endif + +USE_DOCKER ?= 0 +ifeq ($(USE_DOCKER), 1) + ENGINE=docker +endif + +.PHONY: images +images: + $(ENGINE) build -f Dockerfile.rhel8 -t "$(IMAGE):$(VERSION)" -t "$(IMAGE):$(MUTABLE_TAG)" ./ + +################################ +# +# END: Build binaries and images +# +################################ diff --git a/vendor/github.com/openshift/api/config/v1/0000_10_config-operator_01_image.crd.yaml b/vendor/github.com/openshift/api/config/v1/0000_10_config-operator_01_image.crd.yaml index a160fef40..bc320544e 100644 --- a/vendor/github.com/openshift/api/config/v1/0000_10_config-operator_01_image.crd.yaml +++ b/vendor/github.com/openshift/api/config/v1/0000_10_config-operator_01_image.crd.yaml @@ -100,7 +100,7 @@ spec: items: type: string internalRegistryHostname: - description: internalRegistryHostname sets the hostname for the default internal image registry. The value must be in "hostname[:port]" format. This value is set by the image registry operator which controls the internal registry hostname. For backward compatibility, users can still use OPENSHIFT_DEFAULT_REGISTRY environment variable but this setting overrides the environment variable. + description: internalRegistryHostname sets the hostname for the default internal image registry. The value must be in "hostname[:port]" format. This value is set by the image registry operator which controls the internal registry hostname. type: string served: true storage: true diff --git a/vendor/github.com/openshift/api/config/v1/types_image.go b/vendor/github.com/openshift/api/config/v1/types_image.go index eb7643f2b..928224c0d 100644 --- a/vendor/github.com/openshift/api/config/v1/types_image.go +++ b/vendor/github.com/openshift/api/config/v1/types_image.go @@ -64,12 +64,10 @@ type ImageSpec struct { } type ImageStatus struct { - // internalRegistryHostname sets the hostname for the default internal image // registry. The value must be in "hostname[:port]" format. // This value is set by the image registry operator which controls the internal registry - // hostname. For backward compatibility, users can still use OPENSHIFT_DEFAULT_REGISTRY - // environment variable but this setting overrides the environment variable. + // hostname. // +optional InternalRegistryHostname string `json:"internalRegistryHostname,omitempty"` diff --git a/vendor/github.com/openshift/api/config/v1/zz_generated.swagger_doc_generated.go b/vendor/github.com/openshift/api/config/v1/zz_generated.swagger_doc_generated.go index d252e2b79..048c37b16 100644 --- a/vendor/github.com/openshift/api/config/v1/zz_generated.swagger_doc_generated.go +++ b/vendor/github.com/openshift/api/config/v1/zz_generated.swagger_doc_generated.go @@ -903,7 +903,7 @@ func (ImageSpec) SwaggerDoc() map[string]string { } var map_ImageStatus = map[string]string{ - "internalRegistryHostname": "internalRegistryHostname sets the hostname for the default internal image registry. The value must be in \"hostname[:port]\" format. This value is set by the image registry operator which controls the internal registry hostname. For backward compatibility, users can still use OPENSHIFT_DEFAULT_REGISTRY environment variable but this setting overrides the environment variable.", + "internalRegistryHostname": "internalRegistryHostname sets the hostname for the default internal image registry. The value must be in \"hostname[:port]\" format. This value is set by the image registry operator which controls the internal registry hostname.", "externalRegistryHostnames": "externalRegistryHostnames provides the hostnames for the default external image registry. The external hostname should be set only when the image registry is exposed externally. The first value is used in 'publicDockerImageRepository' field in ImageStreams. The value must be in \"hostname[:port]\" format.", } diff --git a/vendor/github.com/openshift/api/kubecontrolplane/v1/types.go b/vendor/github.com/openshift/api/kubecontrolplane/v1/types.go index aae8f464c..b9cdcc213 100644 --- a/vendor/github.com/openshift/api/kubecontrolplane/v1/types.go +++ b/vendor/github.com/openshift/api/kubecontrolplane/v1/types.go @@ -1,10 +1,10 @@ package v1 import ( - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "fmt" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + configv1 "github.com/openshift/api/config/v1" osinv1 "github.com/openshift/api/osin/v1" ) @@ -76,8 +76,6 @@ func (t Arguments) String() string { type KubeAPIServerImagePolicyConfig struct { // internalRegistryHostname sets the hostname for the default internal image // registry. The value must be in "hostname[:port]" format. - // For backward compatibility, users can still use OPENSHIFT_DEFAULT_REGISTRY - // environment variable but this setting overrides the environment variable. InternalRegistryHostname string `json:"internalRegistryHostname"` // externalRegistryHostnames provides the hostnames for the default external image // registry. The external hostname should be set only when the image registry diff --git a/vendor/github.com/openshift/api/kubecontrolplane/v1/zz_generated.swagger_doc_generated.go b/vendor/github.com/openshift/api/kubecontrolplane/v1/zz_generated.swagger_doc_generated.go index 3ee8b23fd..906bb271b 100644 --- a/vendor/github.com/openshift/api/kubecontrolplane/v1/zz_generated.swagger_doc_generated.go +++ b/vendor/github.com/openshift/api/kubecontrolplane/v1/zz_generated.swagger_doc_generated.go @@ -40,7 +40,7 @@ func (KubeAPIServerConfig) SwaggerDoc() map[string]string { } var map_KubeAPIServerImagePolicyConfig = map[string]string{ - "internalRegistryHostname": "internalRegistryHostname sets the hostname for the default internal image registry. The value must be in \"hostname[:port]\" format. For backward compatibility, users can still use OPENSHIFT_DEFAULT_REGISTRY environment variable but this setting overrides the environment variable.", + "internalRegistryHostname": "internalRegistryHostname sets the hostname for the default internal image registry. The value must be in \"hostname[:port]\" format.", "externalRegistryHostnames": "externalRegistryHostnames provides the hostnames for the default external image registry. The external hostname should be set only when the image registry is exposed externally. The first value is used in 'publicDockerImageRepository' field in ImageStreams. The value must be in \"hostname[:port]\" format.", } diff --git a/vendor/github.com/openshift/api/legacyconfig/v1/types.go b/vendor/github.com/openshift/api/legacyconfig/v1/types.go index 871eadd8b..eaf40b6ee 100644 --- a/vendor/github.com/openshift/api/legacyconfig/v1/types.go +++ b/vendor/github.com/openshift/api/legacyconfig/v1/types.go @@ -414,8 +414,6 @@ type ImagePolicyConfig struct { AllowedRegistriesForImport *AllowedRegistries `json:"allowedRegistriesForImport,omitempty"` // InternalRegistryHostname sets the hostname for the default internal image // registry. The value must be in "hostname[:port]" format. - // For backward compatibility, users can still use OPENSHIFT_DEFAULT_REGISTRY - // environment variable but this setting overrides the environment variable. InternalRegistryHostname string `json:"internalRegistryHostname,omitempty"` // ExternalRegistryHostname sets the hostname for the default external image // registry. The external hostname should be set only when the image registry @@ -442,7 +440,7 @@ type RegistryLocation struct { Insecure bool `json:"insecure,omitempty"` } -// holds the necessary configuration options for +// holds the necessary configuration options for type ProjectConfig struct { // DefaultNodeSelector holds default project node label selector DefaultNodeSelector string `json:"defaultNodeSelector"` @@ -482,7 +480,7 @@ type SecurityAllocator struct { MCSLabelsPerProject int `json:"mcsLabelsPerProject"` } -// holds the necessary configuration options for +// holds the necessary configuration options for type PolicyConfig struct { // UserAgentMatchingConfig controls how API calls from *voluntarily* identifying clients will be handled. THIS DOES NOT DEFEND AGAINST MALICIOUS CLIENTS! UserAgentMatchingConfig UserAgentMatchingConfig `json:"userAgentMatchingConfig"` @@ -737,7 +735,7 @@ type OAuthConfig struct { // AlwaysShowProviderSelection will force the provider selection page to render even when there is only a single provider. AlwaysShowProviderSelection bool `json:"alwaysShowProviderSelection"` - //IdentityProviders is an ordered list of ways for a user to identify themselves + // IdentityProviders is an ordered list of ways for a user to identify themselves IdentityProviders []IdentityProvider `json:"identityProviders"` // GrantConfig describes how to handle grants @@ -1563,7 +1561,6 @@ type BuildDefaultsConfig struct { // SourceStrategyDefaultsConfig contains values that apply to builds using the // source strategy. type SourceStrategyDefaultsConfig struct { - // incremental indicates if s2i build strategies should perform an incremental // build or not Incremental *bool `json:"incremental,omitempty"` diff --git a/vendor/github.com/openshift/api/legacyconfig/v1/zz_generated.swagger_doc_generated.go b/vendor/github.com/openshift/api/legacyconfig/v1/zz_generated.swagger_doc_generated.go index 29269b1a3..daa0868b6 100644 --- a/vendor/github.com/openshift/api/legacyconfig/v1/zz_generated.swagger_doc_generated.go +++ b/vendor/github.com/openshift/api/legacyconfig/v1/zz_generated.swagger_doc_generated.go @@ -364,7 +364,7 @@ var map_ImagePolicyConfig = map[string]string{ "scheduledImageImportMinimumIntervalSeconds": "ScheduledImageImportMinimumIntervalSeconds is the minimum number of seconds that can elapse between when image streams scheduled for background import are checked against the upstream repository. The default value is 15 minutes.", "maxScheduledImageImportsPerMinute": "MaxScheduledImageImportsPerMinute is the maximum number of scheduled image streams that will be imported in the background per minute. The default value is 60. Set to -1 for unlimited.", "allowedRegistriesForImport": "AllowedRegistriesForImport limits the container image registries that normal users may import images from. Set this list to the registries that you trust to contain valid Docker images and that you want applications to be able to import from. Users with permission to create Images or ImageStreamMappings via the API are not affected by this policy - typically only administrators or system integrations will have those permissions.", - "internalRegistryHostname": "InternalRegistryHostname sets the hostname for the default internal image registry. The value must be in \"hostname[:port]\" format. For backward compatibility, users can still use OPENSHIFT_DEFAULT_REGISTRY environment variable but this setting overrides the environment variable.", + "internalRegistryHostname": "InternalRegistryHostname sets the hostname for the default internal image registry. The value must be in \"hostname[:port]\" format.", "externalRegistryHostname": "ExternalRegistryHostname sets the hostname for the default external image registry. The external hostname should be set only when the image registry is exposed externally. The value is used in 'publicDockerImageRepository' field in ImageStreams. The value must be in \"hostname[:port]\" format.", "additionalTrustedCA": "AdditionalTrustedCA is a path to a pem bundle file containing additional CAs that should be trusted during imagestream import.", } @@ -722,7 +722,7 @@ func (PodManifestConfig) SwaggerDoc() map[string]string { } var map_PolicyConfig = map[string]string{ - "": "\n holds the necessary configuration options for", + "": "holds the necessary configuration options for", "userAgentMatchingConfig": "UserAgentMatchingConfig controls how API calls from *voluntarily* identifying clients will be handled. THIS DOES NOT DEFEND AGAINST MALICIOUS CLIENTS!", } @@ -731,7 +731,7 @@ func (PolicyConfig) SwaggerDoc() map[string]string { } var map_ProjectConfig = map[string]string{ - "": "\n holds the necessary configuration options for", + "": "holds the necessary configuration options for", "defaultNodeSelector": "DefaultNodeSelector holds default project node label selector", "projectRequestMessage": "ProjectRequestMessage is the string presented to a user if they are unable to request a project via the projectrequest api endpoint", "projectRequestTemplate": "ProjectRequestTemplate is the template to use for creating projects in response to projectrequest. It is in the format namespace/template and it is optional. If it is not specified, a default template is used.", diff --git a/vendor/github.com/openshift/api/openshiftcontrolplane/v1/types.go b/vendor/github.com/openshift/api/openshiftcontrolplane/v1/types.go index 3ec1e2842..05f0d795d 100644 --- a/vendor/github.com/openshift/api/openshiftcontrolplane/v1/types.go +++ b/vendor/github.com/openshift/api/openshiftcontrolplane/v1/types.go @@ -132,8 +132,6 @@ type ImagePolicyConfig struct { // internalRegistryHostname sets the hostname for the default internal image // registry. The value must be in "hostname[:port]" format. - // For backward compatibility, users can still use OPENSHIFT_DEFAULT_REGISTRY - // environment variable but this setting overrides the environment variable. InternalRegistryHostname string `json:"internalRegistryHostname"` // externalRegistryHostnames provides the hostnames for the default external image // registry. The external hostname should be set only when the image registry @@ -194,7 +192,7 @@ type JenkinsPipelineConfig struct { // OpenShiftControllerName defines a string type used to represent the various // OpenShift controllers within openshift-controller-manager. These constants serve as identifiers -// for the controllers and are used on both openshift/openshift-controller-manager +// for the controllers and are used on both openshift/openshift-controller-manager // and openshift/cluster-openshift-controller-manager-operator repositories. type OpenShiftControllerName string @@ -205,7 +203,9 @@ const ( OpenshiftOriginNamespaceController OpenShiftControllerName = "openshift.io/origin-namespace" OpenshiftBuildController OpenShiftControllerName = "openshift.io/build" OpenshiftBuildConfigChangeController OpenShiftControllerName = "openshift.io/build-config-change" + OpenShiftBuilderServiceAccountController OpenShiftControllerName = "openshift.io/builder-serviceaccount" OpenshiftDeployerController OpenShiftControllerName = "openshift.io/deployer" + OpenShiftDeployerServiceAccountController OpenShiftControllerName = "openshift.io/deployer-serviceaccount" OpenshiftDeploymentConfigController OpenShiftControllerName = "openshift.io/deploymentconfig" OpenshiftImageTriggerController OpenShiftControllerName = "openshift.io/image-trigger" OpenshiftImageImportController OpenShiftControllerName = "openshift.io/image-import" @@ -365,7 +365,6 @@ type BuildDefaultsConfig struct { // SourceStrategyDefaultsConfig contains values that apply to builds using the // source strategy. type SourceStrategyDefaultsConfig struct { - // incremental indicates if s2i build strategies should perform an incremental // build or not Incremental *bool `json:"incremental,omitempty"` diff --git a/vendor/github.com/openshift/api/openshiftcontrolplane/v1/zz_generated.swagger_doc_generated.go b/vendor/github.com/openshift/api/openshiftcontrolplane/v1/zz_generated.swagger_doc_generated.go index b50508a63..25a9333bb 100644 --- a/vendor/github.com/openshift/api/openshiftcontrolplane/v1/zz_generated.swagger_doc_generated.go +++ b/vendor/github.com/openshift/api/openshiftcontrolplane/v1/zz_generated.swagger_doc_generated.go @@ -111,7 +111,7 @@ func (ImageImportControllerConfig) SwaggerDoc() map[string]string { var map_ImagePolicyConfig = map[string]string{ "maxImagesBulkImportedPerRepository": "maxImagesBulkImportedPerRepository controls the number of images that are imported when a user does a bulk import of a container repository. This number is set low to prevent users from importing large numbers of images accidentally. Set -1 for no limit.", "allowedRegistriesForImport": "allowedRegistriesForImport limits the container image registries that normal users may import images from. Set this list to the registries that you trust to contain valid Docker images and that you want applications to be able to import from. Users with permission to create Images or ImageStreamMappings via the API are not affected by this policy - typically only administrators or system integrations will have those permissions.", - "internalRegistryHostname": "internalRegistryHostname sets the hostname for the default internal image registry. The value must be in \"hostname[:port]\" format. For backward compatibility, users can still use OPENSHIFT_DEFAULT_REGISTRY environment variable but this setting overrides the environment variable.", + "internalRegistryHostname": "internalRegistryHostname sets the hostname for the default internal image registry. The value must be in \"hostname[:port]\" format.", "externalRegistryHostnames": "externalRegistryHostnames provides the hostnames for the default external image registry. The external hostname should be set only when the image registry is exposed externally. The first value is used in 'publicDockerImageRepository' field in ImageStreams. The value must be in \"hostname[:port]\" format.", "additionalTrustedCA": "additionalTrustedCA is a path to a pem bundle file containing additional CAs that should be trusted during imagestream import.", } diff --git a/vendor/modules.txt b/vendor/modules.txt index e092cd538..a2fa387cc 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -301,7 +301,7 @@ github.com/onsi/gomega/matchers/support/goraph/edge github.com/onsi/gomega/matchers/support/goraph/node github.com/onsi/gomega/matchers/support/goraph/util github.com/onsi/gomega/types -# github.com/openshift/api v0.0.0-20230915112357-693d4b64813c => github.com/openshift/api v0.0.0-20230915112357-693d4b64813c +# github.com/openshift/api v0.0.0-20230925155749-4c26c14d9ebb => github.com/openshift/api v0.0.0-20230925155749-4c26c14d9ebb ## explicit; go 1.20 github.com/openshift/api github.com/openshift/api/apiserver @@ -1220,5 +1220,5 @@ sigs.k8s.io/structured-merge-diff/v4/value # sigs.k8s.io/yaml v1.3.0 ## explicit; go 1.12 sigs.k8s.io/yaml -# github.com/openshift/api => github.com/openshift/api v0.0.0-20230915112357-693d4b64813c +# github.com/openshift/api => github.com/openshift/api v0.0.0-20230925155749-4c26c14d9ebb # github.com/openshift/client-go => github.com/openshift/client-go v0.0.0-20230915115245-53bd8980dfb7