This commit is contained in:
commit
0b411dc9cf
12 changed files with 565 additions and 0 deletions
58
main.go
Normal file
58
main.go
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
// 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)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue