Skip to content

Commit 1370c32

Browse files
authored
cmd: set version in outposts (goauthentik#13116)
Signed-off-by: Jens Langhammer <[email protected]>
1 parent 0ae373b commit 1370c32

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

cmd/ldap/main.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010

1111
"goauthentik.io/internal/common"
1212
"goauthentik.io/internal/config"
13+
"goauthentik.io/internal/constants"
1314
"goauthentik.io/internal/debug"
1415
"goauthentik.io/internal/outpost/ak"
1516
"goauthentik.io/internal/outpost/ak/healthcheck"
@@ -24,7 +25,8 @@ Required environment variables:
2425
- AUTHENTIK_INSECURE: Skip SSL Certificate verification`
2526

2627
var rootCmd = &cobra.Command{
27-
Long: helpMessage,
28+
Long: helpMessage,
29+
Version: constants.FullVersion(),
2830
PersistentPreRun: func(cmd *cobra.Command, args []string) {
2931
log.SetLevel(log.DebugLevel)
3032
log.SetFormatter(&log.JSONFormatter{

cmd/proxy/main.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010

1111
"goauthentik.io/internal/common"
1212
"goauthentik.io/internal/config"
13+
"goauthentik.io/internal/constants"
1314
"goauthentik.io/internal/debug"
1415
"goauthentik.io/internal/outpost/ak"
1516
"goauthentik.io/internal/outpost/ak/healthcheck"
@@ -27,7 +28,8 @@ Optionally, you can set these:
2728
- AUTHENTIK_HOST_BROWSER: URL to use in the browser, when it differs from AUTHENTIK_HOST`
2829

2930
var rootCmd = &cobra.Command{
30-
Long: helpMessage,
31+
Long: helpMessage,
32+
Version: constants.FullVersion(),
3133
PersistentPreRun: func(cmd *cobra.Command, args []string) {
3234
log.SetLevel(log.DebugLevel)
3335
log.SetFormatter(&log.JSONFormatter{

cmd/rac/main.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"github.com/spf13/cobra"
1010

1111
"goauthentik.io/internal/common"
12+
"goauthentik.io/internal/constants"
1213
"goauthentik.io/internal/debug"
1314
"goauthentik.io/internal/outpost/ak"
1415
"goauthentik.io/internal/outpost/ak/healthcheck"
@@ -23,7 +24,8 @@ Required environment variables:
2324
- AUTHENTIK_INSECURE: Skip SSL Certificate verification`
2425

2526
var rootCmd = &cobra.Command{
26-
Long: helpMessage,
27+
Long: helpMessage,
28+
Version: constants.FullVersion(),
2729
PersistentPreRun: func(cmd *cobra.Command, args []string) {
2830
log.SetLevel(log.DebugLevel)
2931
log.SetFormatter(&log.JSONFormatter{

cmd/radius/main.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"github.com/spf13/cobra"
1010

1111
"goauthentik.io/internal/common"
12+
"goauthentik.io/internal/constants"
1213
"goauthentik.io/internal/debug"
1314
"goauthentik.io/internal/outpost/ak"
1415
"goauthentik.io/internal/outpost/ak/healthcheck"
@@ -23,7 +24,8 @@ Required environment variables:
2324
- AUTHENTIK_INSECURE: Skip SSL Certificate verification`
2425

2526
var rootCmd = &cobra.Command{
26-
Long: helpMessage,
27+
Long: helpMessage,
28+
Version: constants.FullVersion(),
2729
PersistentPreRun: func(cmd *cobra.Command, args []string) {
2830
log.SetLevel(log.DebugLevel)
2931
log.SetFormatter(&log.JSONFormatter{

0 commit comments

Comments
 (0)