woodpecker/cmd/drone-agent/main.go

129 lines
3.6 KiB
Go
Raw Normal View History

2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// 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
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// 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.
2017-06-29 22:51:22 +00:00
package main
import (
"fmt"
"os"
"time"
2017-06-29 22:51:22 +00:00
"github.com/woodpecker-ci/woodpecker/version"
2017-06-29 22:51:22 +00:00
_ "github.com/joho/godotenv/autoload"
"github.com/urfave/cli"
)
func main() {
app := cli.NewApp()
app.Name = "drone-agent"
2019-11-12 20:49:38 +00:00
app.Version = version.String()
2017-06-29 22:51:22 +00:00
app.Usage = "drone agent"
app.Action = loop
2017-09-12 18:25:55 +00:00
app.Commands = []cli.Command{
{
Name: "ping",
Usage: "ping the agent",
Action: pinger,
},
}
2017-06-29 22:51:22 +00:00
app.Flags = []cli.Flag{
cli.StringFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_SERVER,WOODPECKER_SERVER",
2017-06-29 22:51:22 +00:00
Name: "server",
Usage: "drone server address",
Value: "localhost:9000",
},
cli.StringFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_USERNAME,WOODPECKER_USERNAME",
2017-06-29 23:35:38 +00:00
Name: "username",
Usage: "drone auth username",
Value: "x-oauth-basic",
},
cli.StringFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_PASSWORD,DRONE_SECRET,WOODPECKER_PASSWORD,WOODPECKER_SECRET",
2017-06-29 23:35:38 +00:00
Name: "password",
2018-01-30 18:28:17 +00:00
Usage: "server-agent shared password",
2017-06-29 22:51:22 +00:00
},
2017-08-03 19:36:22 +00:00
cli.BoolTFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_DEBUG,WOODPECKER_DEBUG",
2017-06-29 22:51:22 +00:00
Name: "debug",
2018-01-30 00:00:14 +00:00
Usage: "enable agent debug mode",
2017-06-29 22:51:22 +00:00
},
2017-09-12 18:25:55 +00:00
cli.BoolFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_DEBUG_PRETTY,WOODPECKER_DEBUG_PRETTY",
2017-09-12 18:25:55 +00:00
Name: "pretty",
Usage: "enable pretty-printed debug output",
},
cli.BoolTFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_DEBUG_NOCOLOR,WOODPECKER_DEBUG_NOCOLOR",
2017-09-12 18:25:55 +00:00
Name: "nocolor",
Usage: "disable colored debug output",
},
cli.StringFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_HOSTNAME,HOSTNAME,WOODPECKER_HOSTNAME,HOSTNAME",
Name: "hostname",
2018-01-30 00:00:14 +00:00
Usage: "agent hostname",
},
2017-06-29 22:51:22 +00:00
cli.StringFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_PLATFORM,WOODPECKER_PLATFORM",
2017-06-29 22:51:22 +00:00
Name: "platform",
2018-01-30 00:00:14 +00:00
Usage: "restrict builds by platform conditions",
2017-06-29 22:51:22 +00:00
Value: "linux/amd64",
},
cli.StringFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_FILTER,WOODPECKER_FILTER",
2017-09-12 18:25:55 +00:00
Name: "filter",
2018-01-30 00:00:14 +00:00
Usage: "filter expression to restrict builds by label",
},
2017-06-29 22:51:22 +00:00
cli.IntFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_MAX_PROCS,WOODPECKER_MAX_PROCS",
2017-06-29 22:51:22 +00:00
Name: "max-procs",
2018-01-30 00:00:14 +00:00
Usage: "agent parallel builds",
2017-06-29 22:51:22 +00:00
Value: 1,
},
2017-09-12 18:25:55 +00:00
cli.BoolTFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_HEALTHCHECK,WOODPECKER_HEALTHCHECK",
2017-09-12 18:25:55 +00:00
Name: "healthcheck",
2018-01-30 00:00:14 +00:00
Usage: "enable healthcheck endpoint",
2017-09-12 18:25:55 +00:00
},
cli.DurationFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_KEEPALIVE_TIME,WOODPECKER_KEEPALIVE_TIME",
2018-01-08 15:28:38 +00:00
Name: "keepalive-time",
2018-01-30 00:00:14 +00:00
Usage: "after a duration of this time of no activity, the agent pings the server to check if the transport is still alive",
2018-01-08 15:28:38 +00:00
},
cli.DurationFlag{
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_KEEPALIVE_TIMEOUT,WOODPECKER_KEEPALIVE_TIMEOUT",
2018-01-08 15:28:38 +00:00
Name: "keepalive-timeout",
2018-01-30 00:00:14 +00:00
Usage: "after pinging for a keepalive check, the agent waits for a duration of this time before closing the connection if no activity",
Value: time.Second * 20,
2018-01-08 15:28:38 +00:00
},
cli.BoolFlag{
Name: "secure-grpc",
Usage: "should the connection to DRONE_SERVER be made using a secure transport",
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_GRPC_SECURE,WOODPECKER_GRPC_SECURE",
},
cli.BoolTFlag{
Name: "skip-insecure-grpc",
Usage: "should the grpc server certificate be verified, only valid when DRONE_GRPC_SECURE is true",
2020-08-26 13:54:25 +00:00
EnvVar: "DRONE_GRPC_VERIFY,WOODPECKER_GRPC_VERIFY",
},
2017-06-29 22:51:22 +00:00
}
if err := app.Run(os.Args); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}