mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-03-31 22:08:49 +02:00
* disable automaxprocs logging Signed-off-by: nitishfy <justnitish06@gmail.com> fix lint checks Signed-off-by: nitishfy <justnitish06@gmail.com> move maxprocs to main.go Signed-off-by: nitishfy <justnitish06@gmail.com> move set auto max procs to a function Signed-off-by: nitishfy <justnitish06@gmail.com> add info log Signed-off-by: nitishfy <justnitish06@gmail.com> * add info log Signed-off-by: nitishfy <justnitish06@gmail.com> * fix lint checks Signed-off-by: nitishfy <justnitish06@gmail.com> * fix lint checks Signed-off-by: nitishfy <justnitish06@gmail.com> * add unit test Signed-off-by: nitishfy <justnitish06@gmail.com> * fix lint issues Signed-off-by: nitishfy <justnitish06@gmail.com> --------- Signed-off-by: nitishfy <justnitish06@gmail.com>
71 lines
2.0 KiB
Go
71 lines
2.0 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/argoproj/argo-cd/v2/cmd/util"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
appcontroller "github.com/argoproj/argo-cd/v2/cmd/argocd-application-controller/commands"
|
|
applicationset "github.com/argoproj/argo-cd/v2/cmd/argocd-applicationset-controller/commands"
|
|
cmpserver "github.com/argoproj/argo-cd/v2/cmd/argocd-cmp-server/commands"
|
|
dex "github.com/argoproj/argo-cd/v2/cmd/argocd-dex/commands"
|
|
gitaskpass "github.com/argoproj/argo-cd/v2/cmd/argocd-git-ask-pass/commands"
|
|
k8sauth "github.com/argoproj/argo-cd/v2/cmd/argocd-k8s-auth/commands"
|
|
notification "github.com/argoproj/argo-cd/v2/cmd/argocd-notification/commands"
|
|
reposerver "github.com/argoproj/argo-cd/v2/cmd/argocd-repo-server/commands"
|
|
apiserver "github.com/argoproj/argo-cd/v2/cmd/argocd-server/commands"
|
|
cli "github.com/argoproj/argo-cd/v2/cmd/argocd/commands"
|
|
)
|
|
|
|
const (
|
|
binaryNameEnv = "ARGOCD_BINARY_NAME"
|
|
)
|
|
|
|
func main() {
|
|
var command *cobra.Command
|
|
|
|
binaryName := filepath.Base(os.Args[0])
|
|
if val := os.Getenv(binaryNameEnv); val != "" {
|
|
binaryName = val
|
|
}
|
|
|
|
isCLI := false
|
|
switch binaryName {
|
|
case "argocd", "argocd-linux-amd64", "argocd-darwin-amd64", "argocd-windows-amd64.exe":
|
|
command = cli.NewCommand()
|
|
isCLI = true
|
|
case "argocd-server":
|
|
command = apiserver.NewCommand()
|
|
case "argocd-application-controller":
|
|
command = appcontroller.NewCommand()
|
|
case "argocd-repo-server":
|
|
command = reposerver.NewCommand()
|
|
case "argocd-cmp-server":
|
|
command = cmpserver.NewCommand()
|
|
isCLI = true
|
|
case "argocd-dex":
|
|
command = dex.NewCommand()
|
|
case "argocd-notifications":
|
|
command = notification.NewCommand()
|
|
case "argocd-git-ask-pass":
|
|
command = gitaskpass.NewCommand()
|
|
isCLI = true
|
|
case "argocd-applicationset-controller":
|
|
command = applicationset.NewCommand()
|
|
case "argocd-k8s-auth":
|
|
command = k8sauth.NewCommand()
|
|
isCLI = true
|
|
default:
|
|
command = cli.NewCommand()
|
|
isCLI = true
|
|
}
|
|
util.SetAutoMaxProcs(isCLI)
|
|
|
|
if err := command.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|