2025-09-01 15:39:45 +02:00
|
|
|
// 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"
|
2025-09-05 11:45:04 +02:00
|
|
|
"log"
|
2025-09-01 15:39:45 +02:00
|
|
|
"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)
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-05 11:45:04 +02:00
|
|
|
prov, logFilePath, err := provider.NewEdgeConnectProvider(executionEnv.ProviderConfigFile, executionEnv.ControllerID)
|
2025-09-01 15:39:45 +02:00
|
|
|
if err != nil {
|
|
|
|
|
fmt.Fprintf(os.Stderr, "Error creating provider: %q", err)
|
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-05 11:45:04 +02:00
|
|
|
logFile, err := os.OpenFile(logFilePath, os.O_APPEND|os.O_RDWR|os.O_CREATE, 0644)
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.Panic(err)
|
|
|
|
|
}
|
|
|
|
|
defer logFile.Close()
|
|
|
|
|
// set log out put
|
|
|
|
|
log.SetOutput(logFile)
|
|
|
|
|
|
2025-09-01 15:39:45 +02:00
|
|
|
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)
|
|
|
|
|
}
|
|
|
|
|
}
|