mirror of
https://github.com/compute-blade-community/compute-blade-agent.git
synced 2026-04-21 17:45:43 +02:00
* chore: update repository references from uptime-industries to compute-blade-community chore: update repository references from uptime-industries to compute-blade-community for consistency and clarity across all files fix: update links in CHANGELOG.md and README.md to point to the new repository location for accurate documentation fix: update Dockerfile and systemd service file to reflect the new repository URL for proper source tracking refactor: change import paths in Go files to use the new repository name for correct package referencing * chore: Add CODEOWNERS * feat: add auto-labeling --------- Co-authored-by: Cedric Kienzler <cedric@specht-labs.de>
48 lines
1.0 KiB
Go
48 lines
1.0 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
"strings"
|
|
|
|
bladeapiv1alpha1 "github.com/compute-blade-community/compute-blade-agent/api/bladeapi/v1alpha1"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
type grpcClientContextKey int
|
|
|
|
const (
|
|
defaultGrpcClientContextKey grpcClientContextKey = 0
|
|
)
|
|
|
|
var (
|
|
Version string
|
|
Commit string
|
|
Date string
|
|
)
|
|
|
|
func clientIntoContext(ctx context.Context, client bladeapiv1alpha1.BladeAgentServiceClient) context.Context {
|
|
return context.WithValue(ctx, defaultGrpcClientContextKey, client)
|
|
}
|
|
|
|
func clientFromContext(ctx context.Context) bladeapiv1alpha1.BladeAgentServiceClient {
|
|
client, ok := ctx.Value(defaultGrpcClientContextKey).(bladeapiv1alpha1.BladeAgentServiceClient)
|
|
if !ok {
|
|
panic("grpc client not found in context")
|
|
}
|
|
return client
|
|
}
|
|
|
|
func main() {
|
|
// Setup configuration
|
|
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
|
viper.AutomaticEnv()
|
|
viper.SetConfigName("config")
|
|
viper.SetConfigType("yaml")
|
|
viper.AddConfigPath("$HOME/.config/bladectl")
|
|
|
|
if err := rootCmd.Execute(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|