-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathnode_healthcheck_operator.go
93 lines (79 loc) · 2.91 KB
/
node_healthcheck_operator.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
package nodehealthcheck
import (
"text/template"
"github.com/kelseyhightower/envconfig"
"github.com/lib/pq"
"github.com/openshift/assisted-service/internal/common"
operatorscommon "github.com/openshift/assisted-service/internal/operators/common"
"github.com/openshift/assisted-service/internal/templating"
"github.com/openshift/assisted-service/models"
"github.com/sirupsen/logrus"
)
var Operator = models.MonitoredOperator{
Namespace: operatorNamespace,
Name: operatorscommon.NodeHealthcheckOperatorName,
OperatorType: models.OperatorTypeOlm,
SubscriptionName: operatorSubscriptionName,
TimeoutSeconds: 30 * 60,
Bundles: pq.StringArray{
operatorscommon.BundleVirtualization.ID,
},
}
type operator struct {
log logrus.FieldLogger
config *Config
templates *template.Template
}
// NewNodeHealthcheckOperator creates new Node Healthcheck Operator.
func NewNodeHealthcheckOperator(log logrus.FieldLogger) *operator {
config := &Config{}
err := envconfig.Process(common.EnvConfigPrefix, config)
if err != nil {
log.Fatal(err.Error())
}
templates, err := templating.LoadTemplates(templatesRoot)
if err != nil {
log.Fatal(err.Error())
}
return &operator{
log: log.WithField("operator", operatorscommon.NodeHealthcheckOperatorName),
config: config,
templates: templates,
}
}
// GetName reports the name of an operator this Operator manages
func (o *operator) GetName() string {
return operatorscommon.NodeHealthcheckOperatorName
}
// GetFullName reports the full name of the specified Operator
func (o *operator) GetFullName() string {
return OperatorFullName
}
// GetDependencies provides a list of dependencies of the Operator
func (o *operator) GetDependencies(cluster *common.Cluster) ([]string, error) {
return []string{operatorscommon.SelfNodeRemediationOperatorName}, nil
}
// GetClusterValidationID returns cluster validation ID for the Operator
func (o *operator) GetClusterValidationID() string {
return string(models.ClusterValidationIDNodeHealthcheckRequirementsSatisfied)
}
// GetHostValidationID returns host validation ID for the Operator
func (o *operator) GetHostValidationID() string {
return string(models.HostValidationIDNodeHealthcheckRequirementsSatisfied)
}
// GetProperties provides description of operator properties
func (o *operator) GetProperties() models.OperatorProperties {
return models.OperatorProperties{}
}
// GetMonitoredOperator returns MonitoredOperator corresponding to the Operator implementation
func (o *operator) GetMonitoredOperator() *models.MonitoredOperator {
return &Operator
}
// GetFeatureSupportID returns the operator unique feature-support ID
func (o *operator) GetFeatureSupportID() models.FeatureSupportLevelID {
return models.FeatureSupportLevelIDNODEHEALTHCHECK
}
// GetBundleLabels returns the list of bundles names associated with the operator
func (o *operator) GetBundleLabels() []string {
return []string(Operator.Bundles)
}