-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmain.go
68 lines (59 loc) · 1.88 KB
/
main.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
//
// Copyright (c) 2021-2024 Red Hat, Inc.
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0
// which is available at https://www.eclipse.org/legal/epl-2.0/
//
// SPDX-License-Identifier: EPL-2.0
//
// Contributors:
// Red Hat, Inc. - initial API and implementation
//
package main
import (
"context"
"os"
"os/signal"
"syscall"
k8sruntime "k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
ctrl "sigs.k8s.io/controller-runtime"
crclient "sigs.k8s.io/controller-runtime/pkg/client"
ctrlconfig "sigs.k8s.io/controller-runtime/pkg/client/config"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
dwv1 "github.com/devfile/api/v2/pkg/apis/workspaces/v1alpha1"
dwv2 "github.com/devfile/api/v2/pkg/apis/workspaces/v1alpha2"
"github.com/redhat-developer/web-terminal-operator/pkg/webterminal"
)
var (
scheme = k8sruntime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(dwv1.AddToScheme(scheme))
utilruntime.Must(dwv2.AddToScheme(scheme))
}
func main() {
ctrl.SetLogger(zap.New())
cfg, err := ctrlconfig.GetConfig()
if err != nil {
setupLog.Error(err, "Failed to read cluster configuration")
os.Exit(1)
}
client, err := crclient.New(cfg, crclient.Options{Scheme: scheme})
if err != nil {
setupLog.Error(err, "Failed to create Kubernetes client")
os.Exit(1)
}
err = webterminal.SetupDefaultWebTerminalTemplates(context.Background(), client)
if err != nil {
setupLog.Error(err, "Failed to set up default DevWorkspaceTemplates for Web Terminal")
os.Exit(1)
}
setupLog.Info("Web Terminal DevWorkspaceTemplates successfully set up.")
exitSignal := make(chan os.Signal, 1)
signal.Notify(exitSignal, syscall.SIGINT, syscall.SIGTERM)
<-exitSignal
}