summaryrefslogtreecommitdiff
path: root/vendor/github.com/openshift/api/config/v1/types_authentication.go
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2020-01-21 15:57:47 +0100
committerValentin Rothberg <rothberg@redhat.com>2020-01-21 19:13:52 +0100
commita0c5762fe886b9b2e0c73cb0639d18096f9c8ade (patch)
tree28f47560b9a2862b09210c6715a60b3cda79e402 /vendor/github.com/openshift/api/config/v1/types_authentication.go
parentfb2bd26f7331ee3a1ca9690d9c2960ccadebc68f (diff)
downloadpodman-a0c5762fe886b9b2e0c73cb0639d18096f9c8ade.tar.gz
podman-a0c5762fe886b9b2e0c73cb0639d18096f9c8ade.tar.bz2
podman-a0c5762fe886b9b2e0c73cb0639d18096f9c8ade.zip
go.mod: fix parse error
Fix the go.mod parsing error caused by updating openshift/api. Fixes: #4728 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'vendor/github.com/openshift/api/config/v1/types_authentication.go')
-rw-r--r--vendor/github.com/openshift/api/config/v1/types_authentication.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/vendor/github.com/openshift/api/config/v1/types_authentication.go b/vendor/github.com/openshift/api/config/v1/types_authentication.go
index 0722ddbfc..eecfe75e7 100644
--- a/vendor/github.com/openshift/api/config/v1/types_authentication.go
+++ b/vendor/github.com/openshift/api/config/v1/types_authentication.go
@@ -9,8 +9,7 @@ import metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
// Authentication specifies cluster-wide settings for authentication (like OAuth and
// webhook token authenticators). The canonical name of an instance is `cluster`.
type Authentication struct {
- metav1.TypeMeta `json:",inline"`
- // Standard object's metadata.
+ metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
// spec holds user settable values for configuration
@@ -77,7 +76,6 @@ type AuthenticationStatus struct {
type AuthenticationList struct {
metav1.TypeMeta `json:",inline"`
- // Standard object's metadata.
metav1.ListMeta `json:"metadata"`
Items []Authentication `json:"items"`