forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.go
112 lines (93 loc) · 4.7 KB
/
setup.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
package userstored
import (
"context"
"net/http"
"github.com/rancher/norman/store/subtype"
"github.com/rancher/norman/types"
namespacecustom "github.com/rancher/rancher/pkg/api/customization/namespace"
"github.com/rancher/rancher/pkg/api/customization/yaml"
"github.com/rancher/rancher/pkg/api/store/cert"
"github.com/rancher/rancher/pkg/api/store/ingress"
"github.com/rancher/rancher/pkg/api/store/namespace"
"github.com/rancher/rancher/pkg/api/store/pod"
"github.com/rancher/rancher/pkg/api/store/projectsetter"
"github.com/rancher/rancher/pkg/api/store/secret"
"github.com/rancher/rancher/pkg/api/store/service"
"github.com/rancher/rancher/pkg/api/store/workload"
"github.com/rancher/rancher/pkg/clustermanager"
clusterschema "github.com/rancher/types/apis/cluster.cattle.io/v3/schema"
"github.com/rancher/types/apis/project.cattle.io/v3/schema"
clusterClient "github.com/rancher/types/client/cluster/v3"
"github.com/rancher/types/client/project/v3"
"github.com/rancher/types/config"
)
func Setup(ctx context.Context, mgmt *config.ScaledContext, clusterManager *clustermanager.Manager, k8sProxy http.Handler) error {
// Here we setup all types that will be stored in the User cluster
schemas := mgmt.Schemas
addProxyStore(ctx, schemas, mgmt, client.ConfigMapType, "v1", nil)
addProxyStore(ctx, schemas, mgmt, client.CronJobType, "batch/v1beta1", workload.NewCustomizeStore)
addProxyStore(ctx, schemas, mgmt, client.DaemonSetType, "apps/v1beta2", workload.NewCustomizeStore)
addProxyStore(ctx, schemas, mgmt, client.DeploymentType, "apps/v1beta2", workload.NewCustomizeStore)
addProxyStore(ctx, schemas, mgmt, client.IngressType, "extensions/v1beta1", ingress.Wrap)
addProxyStore(ctx, schemas, mgmt, client.JobType, "batch/v1", workload.NewCustomizeStore)
addProxyStore(ctx, schemas, mgmt, client.PersistentVolumeClaimType, "v1", nil)
addProxyStore(ctx, schemas, mgmt, client.PodType, "v1", func(store types.Store) types.Store {
return pod.New(store, clusterManager, mgmt)
})
addProxyStore(ctx, schemas, mgmt, client.ReplicaSetType, "apps/v1beta2", workload.NewCustomizeStore)
addProxyStore(ctx, schemas, mgmt, client.ReplicationControllerType, "v1", workload.NewCustomizeStore)
addProxyStore(ctx, schemas, mgmt, client.ServiceType, "v1", service.New)
addProxyStore(ctx, schemas, mgmt, client.StatefulSetType, "apps/v1beta2", workload.NewCustomizeStore)
addProxyStore(ctx, schemas, mgmt, clusterClient.NamespaceType, "v1", namespace.New)
addProxyStore(ctx, schemas, mgmt, clusterClient.PersistentVolumeType, "v1", nil)
addProxyStore(ctx, schemas, mgmt, clusterClient.StorageClassType, "storage.k8s.io/v1", nil)
Secret(ctx, mgmt, schemas)
Service(schemas)
Workload(schemas, clusterManager)
Namespace(schemas, clusterManager)
SetProjectID(schemas, clusterManager, k8sProxy)
return nil
}
func SetProjectID(schemas *types.Schemas, clusterManager *clustermanager.Manager, k8sProxy http.Handler) {
for _, schema := range schemas.SchemasForVersion(schema.Version) {
if schema.Store == nil || schema.Store.Context() != config.UserStorageContext {
continue
}
if schema.CanList(nil) != nil {
continue
}
if _, ok := schema.ResourceFields["namespaceId"]; !ok {
panic(schema.ID + " does not have namespaceId")
}
if _, ok := schema.ResourceFields["projectId"]; !ok {
panic(schema.ID + " does not have projectId")
}
schema.Store = projectsetter.New(schema.Store, clusterManager)
schema.Formatter = yaml.NewFormatter(schema.Formatter)
schema.LinkHandler = yaml.NewLinkHandler(k8sProxy, clusterManager, schema.LinkHandler)
}
}
func Namespace(schemas *types.Schemas, manager *clustermanager.Manager) {
namespaceSchema := schemas.Schema(&clusterschema.Version, "namespace")
namespaceSchema.LinkHandler = namespacecustom.NewLinkHandler(namespaceSchema.LinkHandler, manager)
namespaceSchema.Formatter = yaml.NewFormatter(namespaceSchema.Formatter)
}
func Workload(schemas *types.Schemas, clusterManager *clustermanager.Manager) {
workload.NewWorkloadAggregateStore(schemas, clusterManager)
}
func Service(schemas *types.Schemas) {
serviceSchema := schemas.Schema(&schema.Version, "service")
dnsSchema := schemas.Schema(&schema.Version, "dnsRecord")
dnsSchema.Store = serviceSchema.Store
}
func Secret(ctx context.Context, management *config.ScaledContext, schemas *types.Schemas) {
schema := schemas.Schema(&schema.Version, "namespacedSecret")
schema.Store = secret.NewNamespacedSecretStore(ctx, management.ClientGetter)
for _, subSchema := range schemas.Schemas() {
if subSchema.BaseType == schema.ID && subSchema.ID != schema.ID {
subSchema.Store = subtype.NewSubTypeStore(subSchema.ID, schema.Store)
}
}
schema = schemas.Schema(&schema.Version, "namespacedCertificate")
schema.Store = cert.Wrap(schema.Store)
}