forked from rook/rook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
operator.go
87 lines (71 loc) · 2.57 KB
/
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
/*
Copyright 2018 The Rook Authors. All rights reserved.
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,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Package operator to manage Kubernetes storage.
package edgefs
import (
"fmt"
"os"
"os/signal"
"syscall"
"github.com/coreos/pkg/capnslog"
opkit "github.com/rook/operator-kit"
"github.com/rook/rook/pkg/clusterd"
"github.com/rook/rook/pkg/operator/discover"
"github.com/rook/rook/pkg/operator/edgefs/cluster"
"github.com/rook/rook/pkg/operator/k8sutil"
"k8s.io/api/core/v1"
)
var logger = capnslog.NewPackageLogger("github.com/rook/rook", "edgefs-operator")
type Operator struct {
context *clusterd.Context
resources []opkit.CustomResource
rookImage string
securityAccount string
clusterController *cluster.ClusterController
}
// New creates an operator instance
func New(context *clusterd.Context, rookImage string, securityAccount string) *Operator {
clusterController := cluster.NewClusterController(context, rookImage)
schemes := []opkit.CustomResource{cluster.ClusterResource}
return &Operator{
context: context,
clusterController: clusterController,
resources: schemes,
rookImage: rookImage,
securityAccount: securityAccount,
}
}
// Run the operator instance
func (o *Operator) Run() error {
namespace := os.Getenv(k8sutil.PodNamespaceEnvVar)
if namespace == "" {
return fmt.Errorf("Rook operator namespace is not provided. Expose it via downward API in the rook operator manifest file using environment variable %s", k8sutil.PodNamespaceEnvVar)
}
rookDiscover := discover.New(o.context.Clientset)
if err := rookDiscover.Start(namespace, o.rookImage, o.securityAccount); err != nil {
return fmt.Errorf("Error starting device discovery daemonset: %v", err)
}
signalChan := make(chan os.Signal, 1)
stopChan := make(chan struct{})
signal.Notify(signalChan, syscall.SIGINT, syscall.SIGTERM)
// watch for changes to the edgefs clusters
o.clusterController.StartWatch(v1.NamespaceAll, stopChan)
for {
select {
case <-signalChan:
logger.Infof("shutdown signal received, exiting...")
close(stopChan)
return nil
}
}
}