forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlegacy.go
225 lines (214 loc) · 6.49 KB
/
legacy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
package origin
import (
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/apiserver/pkg/registry/rest"
"github.com/openshift/origin/pkg/apps/registry/deployconfig"
deploymentconfigetcd "github.com/openshift/origin/pkg/apps/registry/deployconfig/etcd"
buildetcd "github.com/openshift/origin/pkg/build/registry/build/etcd"
buildconfig "github.com/openshift/origin/pkg/build/registry/buildconfig"
buildconfigetcd "github.com/openshift/origin/pkg/build/registry/buildconfig/etcd"
imagestreametcd "github.com/openshift/origin/pkg/image/registry/imagestream/etcd"
routeregistry "github.com/openshift/origin/pkg/route/registry/route"
routeetcd "github.com/openshift/origin/pkg/route/registry/route/etcd"
)
var (
// OriginLegacyKinds lists all kinds that are locked to the legacy Origin API schema.
// This list should not grow and adding a new types to the locked Origin API schema will
// cause a unit test failure.
OriginLegacyKinds = sets.NewString(
"AppliedClusterResourceQuota",
"AppliedClusterResourceQuotaList",
"BinaryBuildRequestOptions",
"Build",
"BuildConfig",
"BuildConfigList",
"BuildList",
"BuildLog",
"BuildLogOptions",
"BuildRequest",
"ClusterNetwork",
"ClusterNetworkList",
"ClusterResourceQuota",
"ClusterResourceQuotaList",
"ClusterRole",
"ClusterRoleBinding",
"ClusterRoleBindingList",
"ClusterRoleList",
"DeploymentConfig",
"DeploymentConfigList",
"DeploymentConfigRollback",
"DeploymentLog",
"DeploymentLogOptions",
"DeploymentRequest",
"EgressNetworkPolicy",
"EgressNetworkPolicyList",
"Group",
"GroupList",
"HostSubnet",
"HostSubnetList",
"Identity",
"IdentityList",
"Image",
"ImageList",
"ImageSignature",
"ImageStream",
"ImageStreamImage",
"ImageStreamImport",
"ImageStreamList",
"ImageStreamMapping",
"ImageStreamTag",
"ImageStreamTagList",
"IsPersonalSubjectAccessReview",
"LocalResourceAccessReview",
"LocalSubjectAccessReview",
"NetNamespace",
"NetNamespaceList",
"OAuthAccessToken",
"OAuthAccessTokenList",
"OAuthAuthorizeToken",
"OAuthAuthorizeTokenList",
"OAuthClient",
"OAuthClientAuthorization",
"OAuthClientAuthorizationList",
"OAuthClientList",
"OAuthRedirectReference",
"PodSecurityPolicyReview",
"PodSecurityPolicySelfSubjectReview",
"PodSecurityPolicySubjectReview",
"ProcessedTemplate",
"Project",
"ProjectList",
"ProjectRequest",
"ResourceAccessReview",
"ResourceAccessReviewResponse",
"Role",
"RoleBinding",
"RoleBindingList",
"RoleBindingRestriction",
"RoleBindingRestrictionList",
"RoleList",
"Route",
"RouteList",
"SelfSubjectRulesReview",
"SubjectAccessReview",
"SubjectAccessReviewResponse",
"SubjectRulesReview",
"Template",
"TemplateConfig",
"TemplateList",
"User",
"UserIdentityMapping",
"UserList",
)
// OriginLegacyResources lists all Origin resources that are locked for the legacy v1
// Origin API. This list should not grow.
OriginLegacyResources = sets.NewString(
"appliedClusterResourceQuotas",
"buildConfigs",
"builds",
"clusterNetworks",
"clusterResourceQuotas",
"clusterRoleBindings",
"clusterRoles",
"deploymentConfigRollbacks",
"deploymentConfigs",
"egressNetworkPolicies",
"groups",
"hostSubnets",
"identities",
"imageStreamImages",
"imageStreamImports",
"imageStreamMappings",
"imageStreamTags",
"imageStreams",
"images",
"imagesignatures",
"localResourceAccessReviews",
"localSubjectAccessReviews",
"netNamespaces",
"oAuthAccessTokens",
"oAuthAuthorizeTokens",
"oAuthClientAuthorizations",
"oAuthClients",
"podSecurityPolicyReviews",
"podSecurityPolicySelfSubjectReviews",
"podSecurityPolicySubjectReviews",
"policies",
"policyBindings",
"processedTemplates",
"projectRequests",
"projects",
"resourceAccessReviews",
"roleBindingRestrictions",
"roleBindings",
"roles",
"routes",
"selfSubjectRulesReviews",
"subjectAccessReviews",
"subjectRulesReviews",
"templates",
"userIdentityMappings",
"users",
)
// OriginLegacySubresources lists all Origin sub-resources that are locked for the
// legacy v1 Origin API. This list should not grow.
OriginLegacySubresources = sets.NewString(
"clusterResourceQuotas/status",
"processedTemplates",
"imageStreams/status",
"imageStreams/secrets",
"generateDeploymentConfigs",
"deploymentConfigs/log",
"deploymentConfigs/instantiate",
"deploymentConfigs/scale",
"deploymentConfigs/status",
"deploymentConfigs/rollback",
"routes/status",
"builds/clone",
"builds/log",
"builds/details",
"buildConfigs/webhooks",
"buildConfigs/instantiate",
"buildConfigs/instantiatebinary",
)
)
// LegacyStorage returns a storage for locked legacy types.
func LegacyStorage(storage map[schema.GroupVersion]map[string]rest.Storage) map[string]rest.Storage {
legacyStorage := map[string]rest.Storage{}
for _, gvStorage := range storage {
for resource, s := range gvStorage {
if OriginLegacyResources.Has(resource) || OriginLegacySubresources.Has(resource) {
// We want *some* our legacy resources to orphan by default instead of garbage collecting.
// Kube only did this for a select few resources which were controller managed and established links
// via a workload controller. In openshift, these will all conform to registry.Store so we
// can actually wrap the "normal" storage here.
switch storage := s.(type) {
case *buildetcd.REST:
legacyStorage[resource] = &buildetcd.LegacyREST{REST: storage}
case *buildconfigetcd.REST:
store := *storage.Store
store.DeleteStrategy = buildconfig.LegacyStrategy
store.CreateStrategy = buildconfig.LegacyStrategy
legacyStorage[resource] = &buildconfigetcd.LegacyREST{REST: &buildconfigetcd.REST{Store: &store}}
case *deploymentconfigetcd.REST:
store := *storage.Store
store.CreateStrategy = deployconfig.LegacyStrategy
store.DeleteStrategy = deployconfig.LegacyStrategy
legacyStorage[resource] = &deploymentconfigetcd.LegacyREST{REST: &deploymentconfigetcd.REST{Store: &store}}
case *imagestreametcd.REST:
legacyStorage[resource] = &imagestreametcd.LegacyREST{REST: storage}
case *imagestreametcd.LayersREST:
delete(legacyStorage, resource)
case *routeetcd.REST:
store := *storage.Store
store.Decorator = routeregistry.DecorateLegacyRouteWithEmptyDestinationCACertificates
legacyStorage[resource] = &routeetcd.LegacyREST{REST: &routeetcd.REST{Store: &store}}
default:
legacyStorage[resource] = s
}
}
}
}
return legacyStorage
}