Skip to content

Commit aa34658

Browse files
committed
Generated files
1 parent 59a803b commit aa34658

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

pkg/apps/generated/informers/internalversion/factory.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@
33
package internalversion
44

55
import (
6-
reflect "reflect"
7-
sync "sync"
8-
time "time"
9-
106
apps "github.com/openshift/origin/pkg/apps/generated/informers/internalversion/apps"
117
internalinterfaces "github.com/openshift/origin/pkg/apps/generated/informers/internalversion/internalinterfaces"
128
internalclientset "github.com/openshift/origin/pkg/apps/generated/internalclientset"
139
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1410
runtime "k8s.io/apimachinery/pkg/runtime"
1511
schema "k8s.io/apimachinery/pkg/runtime/schema"
1612
cache "k8s.io/client-go/tools/cache"
13+
reflect "reflect"
14+
sync "sync"
15+
time "time"
1716
)
1817

1918
type sharedInformerFactory struct {

pkg/apps/generated/informers/internalversion/generic.go

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ package internalversion
44

55
import (
66
"fmt"
7-
87
apps "github.com/openshift/origin/pkg/apps/apis/apps"
98
schema "k8s.io/apimachinery/pkg/runtime/schema"
109
cache "k8s.io/client-go/tools/cache"

pkg/cmd/server/api/v1/zz_generated.deepcopy.go

+10-1
Original file line numberDiff line numberDiff line change
@@ -1580,7 +1580,7 @@ func (in *OAuthConfig) DeepCopyInto(out *OAuthConfig) {
15801580
**out = **in
15811581
}
15821582
}
1583-
out.TokenConfig = in.TokenConfig
1583+
in.TokenConfig.DeepCopyInto(&out.TokenConfig)
15841584
if in.Templates != nil {
15851585
in, out := &in.Templates, &out.Templates
15861586
if *in == nil {
@@ -2134,6 +2134,15 @@ func (in *StringSourceSpec) DeepCopy() *StringSourceSpec {
21342134
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
21352135
func (in *TokenConfig) DeepCopyInto(out *TokenConfig) {
21362136
*out = *in
2137+
if in.AccessTokenInactivityTimeoutSeconds != nil {
2138+
in, out := &in.AccessTokenInactivityTimeoutSeconds, &out.AccessTokenInactivityTimeoutSeconds
2139+
if *in == nil {
2140+
*out = nil
2141+
} else {
2142+
*out = new(int32)
2143+
**out = **in
2144+
}
2145+
}
21372146
return
21382147
}
21392148

pkg/cmd/server/api/zz_generated.deepcopy.go

+10-1
Original file line numberDiff line numberDiff line change
@@ -1569,7 +1569,7 @@ func (in *OAuthConfig) DeepCopyInto(out *OAuthConfig) {
15691569
**out = **in
15701570
}
15711571
}
1572-
out.TokenConfig = in.TokenConfig
1572+
in.TokenConfig.DeepCopyInto(&out.TokenConfig)
15731573
if in.Templates != nil {
15741574
in, out := &in.Templates, &out.Templates
15751575
if *in == nil {
@@ -2123,6 +2123,15 @@ func (in *StringSourceSpec) DeepCopy() *StringSourceSpec {
21232123
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
21242124
func (in *TokenConfig) DeepCopyInto(out *TokenConfig) {
21252125
*out = *in
2126+
if in.AccessTokenInactivityTimeoutSeconds != nil {
2127+
in, out := &in.AccessTokenInactivityTimeoutSeconds, &out.AccessTokenInactivityTimeoutSeconds
2128+
if *in == nil {
2129+
*out = nil
2130+
} else {
2131+
*out = new(int32)
2132+
**out = **in
2133+
}
2134+
}
21262135
return
21272136
}
21282137

0 commit comments

Comments
 (0)