-
Notifications
You must be signed in to change notification settings - Fork 312
/
util.go
64 lines (54 loc) · 1.98 KB
/
util.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
// Copyright 2020 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package spec
import (
"github.com/pingcap/errors"
"github.com/pingcap/tiup/pkg/meta"
"github.com/pingcap/tiup/pkg/version"
)
const (
// PatchDirName is the directory to store patch file eg. {PatchDirName}/tidb-hotfix.tar.gz
PatchDirName = "patch"
)
var tidbSpec *meta.SpecManager
// GetSpecManager return the spec manager of tidb cluster.
func GetSpecManager() *meta.SpecManager {
if !initialized {
panic("must Initialize profile first")
}
return tidbSpec
}
// ClusterMeta is the specification of generic cluster metadata
type ClusterMeta struct {
User string `yaml:"user"` // the user to run and manage cluster on remote
Version string `yaml:"tidb_version"` // the version of TiDB cluster
//EnableTLS bool `yaml:"enable_tls"`
//EnableFirewall bool `yaml:"firewall"`
OpsVer string `yaml:"last_ops_ver,omitempty"` // the version of ourself that updated the meta last time
Topology *Specification `yaml:"topology"`
}
// SaveClusterMeta saves the cluster meta information to profile directory
func SaveClusterMeta(clusterName string, cmeta *ClusterMeta) error {
// set the cmd version
cmeta.OpsVer = version.NewTiUPVersion().String()
return GetSpecManager().SaveMeta(clusterName, cmeta)
}
// ClusterMetadata tries to read the metadata of a cluster from file
func ClusterMetadata(clusterName string) (*ClusterMeta, error) {
var cm ClusterMeta
err := GetSpecManager().Metadata(clusterName, &cm)
if err != nil {
return nil, errors.AddStack(err)
}
return &cm, nil
}