garm-provider-edge-connect/main.go
Christopher Hase 0b411dc9cf
Some checks failed
Go Tests / go-tests (push) Failing after 1m9s
feat(edge-connect): add skeleton
2025-09-01 15:39:45 +02:00

58 lines
1.5 KiB
Go

// Copyright 2023 Cloudbase Solutions SRL
//
// 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 main
import (
"context"
"fmt"
"os"
"os/signal"
"syscall"
"edp.buildth.ing/DevFW-CICD/garm-provider-edge-connect/provider"
"github.com/cloudbase/garm-provider-common/execution"
)
var signals = []os.Signal{
os.Interrupt,
syscall.SIGTERM,
}
func main() {
ctx, stop := signal.NotifyContext(context.Background(), signals...)
defer stop()
executionEnv, err := execution.GetEnvironment()
if err != nil {
fmt.Fprintf(os.Stderr, "Error getting environment: %q", err)
os.Exit(1)
}
prov, err := provider.NewEdgeConnectProvider(executionEnv.ProviderConfigFile, executionEnv.ControllerID)
if err != nil {
fmt.Fprintf(os.Stderr, "Error creating provider: %q", err)
os.Exit(1)
}
result, err := executionEnv.Run(ctx, prov)
if err != nil {
fmt.Fprintf(os.Stderr, "failed to run command: %+v\n", err)
os.Exit(1)
}
if len(result) > 0 {
fmt.Fprint(os.Stdout, result)
}
}