|
| 1 | +package origin |
| 2 | + |
| 3 | +import ( |
| 4 | + "k8s.io/kubernetes/pkg/api/rest" |
| 5 | + "k8s.io/kubernetes/pkg/api/unversioned" |
| 6 | + "k8s.io/kubernetes/pkg/util/sets" |
| 7 | +) |
| 8 | + |
| 9 | +var ( |
| 10 | + // OriginLegacyKinds lists all kinds that are locked to the legacy Origin API schema. |
| 11 | + // This list should not grow and adding a new types to the locked Origin API schema will |
| 12 | + // cause a unit test failure. |
| 13 | + OriginLegacyKinds = sets.NewString( |
| 14 | + "AppliedClusterResourceQuota", |
| 15 | + "AppliedClusterResourceQuotaList", |
| 16 | + "BinaryBuildRequestOptions", |
| 17 | + "Build", |
| 18 | + "BuildConfig", |
| 19 | + "BuildConfigList", |
| 20 | + "BuildList", |
| 21 | + "BuildLog", |
| 22 | + "BuildLogOptions", |
| 23 | + "BuildRequest", |
| 24 | + "ClusterNetwork", |
| 25 | + "ClusterNetworkList", |
| 26 | + "ClusterPolicy", |
| 27 | + "ClusterPolicyBinding", |
| 28 | + "ClusterPolicyBindingList", |
| 29 | + "ClusterPolicyList", |
| 30 | + "ClusterResourceQuota", |
| 31 | + "ClusterResourceQuotaList", |
| 32 | + "ClusterRole", |
| 33 | + "ClusterRoleBinding", |
| 34 | + "ClusterRoleBindingList", |
| 35 | + "ClusterRoleList", |
| 36 | + "DeploymentConfig", |
| 37 | + "DeploymentConfigList", |
| 38 | + "DeploymentConfigRollback", |
| 39 | + "DeploymentLog", |
| 40 | + "DeploymentLogOptions", |
| 41 | + "DeploymentRequest", |
| 42 | + "EgressNetworkPolicy", |
| 43 | + "EgressNetworkPolicyList", |
| 44 | + "Group", |
| 45 | + "GroupList", |
| 46 | + "HostSubnet", |
| 47 | + "HostSubnetList", |
| 48 | + "Identity", |
| 49 | + "IdentityList", |
| 50 | + "Image", |
| 51 | + "ImageList", |
| 52 | + "ImageSignature", |
| 53 | + "ImageStream", |
| 54 | + "ImageStreamImage", |
| 55 | + "ImageStreamImport", |
| 56 | + "ImageStreamList", |
| 57 | + "ImageStreamMapping", |
| 58 | + "ImageStreamTag", |
| 59 | + "ImageStreamTagList", |
| 60 | + "IsPersonalSubjectAccessReview", |
| 61 | + "LocalResourceAccessReview", |
| 62 | + "LocalSubjectAccessReview", |
| 63 | + "NetNamespace", |
| 64 | + "NetNamespaceList", |
| 65 | + "OAuthAccessToken", |
| 66 | + "OAuthAccessTokenList", |
| 67 | + "OAuthAuthorizeToken", |
| 68 | + "OAuthAuthorizeTokenList", |
| 69 | + "OAuthClient", |
| 70 | + "OAuthClientAuthorization", |
| 71 | + "OAuthClientAuthorizationList", |
| 72 | + "OAuthClientList", |
| 73 | + "OAuthRedirectReference", |
| 74 | + "PodSecurityPolicyReview", |
| 75 | + "PodSecurityPolicySelfSubjectReview", |
| 76 | + "PodSecurityPolicySubjectReview", |
| 77 | + "Policy", |
| 78 | + "PolicyBinding", |
| 79 | + "PolicyBindingList", |
| 80 | + "PolicyList", |
| 81 | + "ProcessedTemplate", |
| 82 | + "Project", |
| 83 | + "ProjectList", |
| 84 | + "ProjectRequest", |
| 85 | + "ResourceAccessReview", |
| 86 | + "ResourceAccessReviewResponse", |
| 87 | + "Role", |
| 88 | + "RoleBinding", |
| 89 | + "RoleBindingList", |
| 90 | + "RoleBindingRestriction", |
| 91 | + "RoleBindingRestrictionList", |
| 92 | + "RoleList", |
| 93 | + "Route", |
| 94 | + "RouteList", |
| 95 | + "SelfSubjectRulesReview", |
| 96 | + "SubjectAccessReview", |
| 97 | + "SubjectAccessReviewResponse", |
| 98 | + "SubjectRulesReview", |
| 99 | + "Template", |
| 100 | + "TemplateConfig", |
| 101 | + "TemplateList", |
| 102 | + "User", |
| 103 | + "UserIdentityMapping", |
| 104 | + "UserList", |
| 105 | + ) |
| 106 | + |
| 107 | + // OriginLegacyResources lists all Origin resources that are locked for the legacy v1 |
| 108 | + // Origin API. This list should not grow. |
| 109 | + OriginLegacyResources = sets.NewString( |
| 110 | + "appliedClusterResourceQuotas", |
| 111 | + "buildConfigs", |
| 112 | + "builds", |
| 113 | + "clusterNetworks", |
| 114 | + "clusterPolicies", |
| 115 | + "clusterPolicyBindings", |
| 116 | + "clusterResourceQuotas", |
| 117 | + "clusterRoleBindings", |
| 118 | + "clusterRoles", |
| 119 | + "deploymentConfigRollbacks", |
| 120 | + "deploymentConfigs", |
| 121 | + "egressNetworkPolicies", |
| 122 | + "groups", |
| 123 | + "hostSubnets", |
| 124 | + "identities", |
| 125 | + "imageStreamImages", |
| 126 | + "imageStreamImports", |
| 127 | + "imageStreamMappings", |
| 128 | + "imageStreamTags", |
| 129 | + "imageStreams", |
| 130 | + "images", |
| 131 | + "imagesignatures", |
| 132 | + "localResourceAccessReviews", |
| 133 | + "localSubjectAccessReviews", |
| 134 | + "netNamespaces", |
| 135 | + "oAuthAccessTokens", |
| 136 | + "oAuthAuthorizeTokens", |
| 137 | + "oAuthClientAuthorizations", |
| 138 | + "oAuthClients", |
| 139 | + "podSecurityPolicyReviews", |
| 140 | + "podSecurityPolicySelfSubjectReviews", |
| 141 | + "podSecurityPolicySubjectReviews", |
| 142 | + "policies", |
| 143 | + "policyBindings", |
| 144 | + "processedTemplates", |
| 145 | + "projectRequests", |
| 146 | + "projects", |
| 147 | + "resourceAccessReviews", |
| 148 | + "roleBindingRestrictions", |
| 149 | + "roleBindings", |
| 150 | + "roles", |
| 151 | + "routes", |
| 152 | + "selfSubjectRulesReviews", |
| 153 | + "subjectAccessReviews", |
| 154 | + "subjectRulesReviews", |
| 155 | + "templates", |
| 156 | + "userIdentityMappings", |
| 157 | + "users", |
| 158 | + ) |
| 159 | + |
| 160 | + // OriginLegacySubresources lists all Origin sub-resources that are locked for the |
| 161 | + // legacy v1 Origin API. This list should not grow. |
| 162 | + OriginLegacySubresources = sets.NewString( |
| 163 | + "clusterResourceQuotas/status", |
| 164 | + "processedTemplates", |
| 165 | + "imageStreams/status", |
| 166 | + "imageStreams/secrets", |
| 167 | + "generateDeploymentConfigs", |
| 168 | + "deploymentConfigs/log", |
| 169 | + "deploymentConfigs/instantiate", |
| 170 | + "deploymentConfigs/scale", |
| 171 | + "deploymentConfigs/status", |
| 172 | + "deploymentConfigs/rollback", |
| 173 | + "routes/status", |
| 174 | + "builds/clone", |
| 175 | + "builds/log", |
| 176 | + "builds/details", |
| 177 | + "buildConfigs/webhooks", |
| 178 | + "buildConfigs/instantiate", |
| 179 | + "buildConfigs/instantiatebinary", |
| 180 | + ) |
| 181 | +) |
| 182 | + |
| 183 | +// LegacyStorage returns a storage for locked legacy types. |
| 184 | +func LegacyStorage(storage map[unversioned.GroupVersion]map[string]rest.Storage) map[string]rest.Storage { |
| 185 | + legacyStorage := map[string]rest.Storage{} |
| 186 | + for _, gvStorage := range storage { |
| 187 | + for resource, s := range gvStorage { |
| 188 | + if OriginLegacyResources.Has(resource) || OriginLegacySubresources.Has(resource) { |
| 189 | + legacyStorage[resource] = s |
| 190 | + } |
| 191 | + } |
| 192 | + } |
| 193 | + return legacyStorage |
| 194 | +} |
0 commit comments