-
Notifications
You must be signed in to change notification settings - Fork 0
/
cluster_catalog_sync.go
53 lines (45 loc) · 1.53 KB
/
cluster_catalog_sync.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
package manager
import (
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/sirupsen/logrus"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/tools/cache"
)
func (m *Manager) ClusterCatalogSync(key string, obj *v3.ClusterCatalog) (runtime.Object, error) {
ns, name, err := cache.SplitMetaNamespaceKey(key)
if err != nil {
return nil, err
}
if obj == nil {
return nil, m.deleteTemplates(name)
}
// always get a refresh catalog from etcd
clusterCatalog, err := m.clusterCatalogClient.GetNamespaced(ns, name, metav1.GetOptions{})
if err != nil {
return nil, err
}
repoPath, commit, err := m.prepareRepoPath(obj.Catalog)
if err != nil {
v3.CatalogConditionRefreshed.False(clusterCatalog)
v3.CatalogConditionRefreshed.ReasonAndMessageFromError(clusterCatalog, err)
m.clusterCatalogClient.Update(clusterCatalog)
return nil, err
}
if commit == clusterCatalog.Status.Commit {
logrus.Debugf("Catalog %s is already up to date", clusterCatalog.Name)
if !v3.CatalogConditionRefreshed.IsTrue(clusterCatalog) {
v3.CatalogConditionRefreshed.True(clusterCatalog)
v3.CatalogConditionRefreshed.Reason(clusterCatalog, "")
v3.CatalogConditionRefreshed.Message(clusterCatalog, "")
m.clusterCatalogClient.Update(clusterCatalog)
}
return nil, nil
}
cmt := &CatalogInfo{
catalog: &clusterCatalog.Catalog,
clusterCatalog: clusterCatalog,
}
logrus.Infof("Updating catalog %s", clusterCatalog.Name)
return nil, m.traverseAndUpdate(repoPath, commit, cmt)
}