mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
Fix endpoint option description (#651)
This commit is contained in:
parent
6db28e8afb
commit
06916bff2f
2 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ func init() {
|
|||
|
||||
f.BoolVarP(&probeInput.SSL, "ssl", "", false, "Determines if SSL is enabled")
|
||||
f.BoolVarP(&probeInput.Auth, "auth", "", false, "Determines if authentication is enabled")
|
||||
f.StringVarP(&probeInput.Endpoint, "endpoint", "", "/_api/version", "Determines if SSL is enabled")
|
||||
f.StringVarP(&probeInput.Endpoint, "endpoint", "", "/_api/version", "Endpoint (path) to call for lifecycle probe")
|
||||
f.StringVarP(&probeInput.JWTPath, "jwt", "", k8sutil.ClusterJWTSecretVolumeMountDir, "Path to the JWT tokens")
|
||||
}
|
||||
|
||||
|
|
|
@ -482,6 +482,6 @@ func cmdRebootInspectRun(cmd *cobra.Command, args []string) {
|
|||
})
|
||||
|
||||
if http.ListenAndServe(":8080", nil); err != nil {
|
||||
cliLog.Fatal().Err(err).Msg("Failed to listen and server")
|
||||
cliLog.Fatal().Err(err).Msg("Failed to listen and serve")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue