OpenShift comes with some custom API types, eg, DeploymentConfig and SecurityContextConstraints. To support these API types in AppsCode projects, we have to depend on the following additional projects.
But these projects update their Kubernetes client-go dependency much slowly. It is too complicated to update their k8s.io/client-go dependency in our own fork. Also, the dependency tree of these libraries is just as huge as Kubernetes itself. So, we have "forked" just the API types and used Kubernetes code-generator to generate clients for these custom types.
Caveat:
- Keep the types.go in
apis
package up-to-date.