feat: distroless image

This commit is contained in:
Stavros
2025-10-07 15:03:53 +03:00
parent 720f387908
commit 1ee0cee171
5 changed files with 236 additions and 17 deletions

View File

@@ -17,24 +17,24 @@ type healthzResponse struct {
Message string `json:"message"`
}
type healthCmd struct {
type healthcheckCmd struct {
root *cobra.Command
cmd *cobra.Command
viper *viper.Viper
}
func newHealthCmd(root *cobra.Command) *healthCmd {
return &healthCmd{
func newHealthcheckCmd(root *cobra.Command) *healthcheckCmd {
return &healthcheckCmd{
root: root,
viper: viper.New(),
}
}
func (c *healthCmd) Register() {
func (c *healthcheckCmd) Register() {
c.cmd = &cobra.Command{
Use: "health",
Short: "Health check",
Use: "healthcheck [app-url]",
Short: "Perform a health check",
Long: `Use the health check endpoint to verify that Tinyauth is running and it's healthy.`,
Run: c.run,
}
@@ -46,26 +46,34 @@ func (c *healthCmd) Register() {
}
}
func (c *healthCmd) GetCmd() *cobra.Command {
func (c *healthcheckCmd) GetCmd() *cobra.Command {
return c.cmd
}
func (c *healthCmd) run(cmd *cobra.Command, args []string) {
func (c *healthcheckCmd) run(cmd *cobra.Command, args []string) {
log.Logger = log.Level(zerolog.InfoLevel)
appUrl := "http://127.0.0.1:3000"
var appUrl string
port := c.viper.GetString("PORT")
address := c.viper.GetString("ADDRESS")
if address != "" && port != "" {
appUrl = "http://" + address + ":" + port
if port == "" {
port = "3000"
}
if address == "" {
address = "127.0.0.1"
}
appUrl = "http://" + address + ":" + port
if len(args) > 0 {
appUrl = args[0]
}
log.Info().Str("appUrl", appUrl).Msg("Performing health check")
client := http.Client{}
req, err := http.NewRequest("GET", appUrl+"/api/healthz", nil)

View File

@@ -140,7 +140,7 @@ func Run() {
newVerifyUserCmd(userCmd).Register()
newGenerateTotpCmd(totpCmd).Register()
newVersionCmd(root).Register()
newHealthCmd(root).Register()
newHealthcheckCmd(root).Register()
root.AddCommand(userCmd)
root.AddCommand(totpCmd)