@ -23,9 +23,9 @@ var defaultInterval = int((time.Hour * 24).Seconds())
// RegisterDockerFlags that are used directly by the docker api client
func RegisterDockerFlags ( rootCmd * cobra . Command ) {
flags := rootCmd . PersistentFlags ( )
flags . StringP ( "host" , "H" , viper . Get String( "DOCKER_HOST" ) , "daemon socket to connect to" )
flags . BoolP ( "tlsverify" , "v" , viper . Get Bool( "DOCKER_TLS_VERIFY" ) , "use TLS and verify the remote" )
flags . StringP ( "api-version" , "a" , viper . Get String( "DOCKER_API_VERSION" ) , "api version to use by docker client" )
flags . StringP ( "host" , "H" , env String( "DOCKER_HOST" ) , "daemon socket to connect to" )
flags . BoolP ( "tlsverify" , "v" , env Bool( "DOCKER_TLS_VERIFY" ) , "use TLS and verify the remote" )
flags . StringP ( "api-version" , "a" , env String( "DOCKER_API_VERSION" ) , "api version to use by docker client" )
}
// RegisterSystemFlags that are used by watchtower to modify the program flow
@ -34,132 +34,132 @@ func RegisterSystemFlags(rootCmd *cobra.Command) {
flags . IntP (
"interval" ,
"i" ,
viper . Get Int( "WATCHTOWER_POLL_INTERVAL" ) ,
env Int( "WATCHTOWER_POLL_INTERVAL" ) ,
"Poll interval (in seconds)" )
flags . StringP (
"schedule" ,
"s" ,
viper . Get String( "WATCHTOWER_SCHEDULE" ) ,
env String( "WATCHTOWER_SCHEDULE" ) ,
"The cron expression which defines when to update" )
flags . DurationP (
"stop-timeout" ,
"t" ,
viper . Get Duration( "WATCHTOWER_TIMEOUT" ) ,
env Duration( "WATCHTOWER_TIMEOUT" ) ,
"Timeout before a container is forcefully stopped" )
flags . BoolP (
"no-pull" ,
"" ,
viper . Get Bool( "WATCHTOWER_NO_PULL" ) ,
env Bool( "WATCHTOWER_NO_PULL" ) ,
"Do not pull any new images" )
flags . BoolP (
"no-restart" ,
"" ,
viper . Get Bool( "WATCHTOWER_NO_RESTART" ) ,
env Bool( "WATCHTOWER_NO_RESTART" ) ,
"Do not restart any containers" )
flags . BoolP (
"no-startup-message" ,
"" ,
viper . Get Bool( "WATCHTOWER_NO_STARTUP_MESSAGE" ) ,
env Bool( "WATCHTOWER_NO_STARTUP_MESSAGE" ) ,
"Prevents watchtower from sending a startup message" )
flags . BoolP (
"cleanup" ,
"c" ,
viper . Get Bool( "WATCHTOWER_CLEANUP" ) ,
env Bool( "WATCHTOWER_CLEANUP" ) ,
"Remove previously used images after updating" )
flags . BoolP (
"remove-volumes" ,
"" ,
viper . Get Bool( "WATCHTOWER_REMOVE_VOLUMES" ) ,
env Bool( "WATCHTOWER_REMOVE_VOLUMES" ) ,
"Remove attached volumes before updating" )
flags . BoolP (
"label-enable" ,
"e" ,
viper . Get Bool( "WATCHTOWER_LABEL_ENABLE" ) ,
env Bool( "WATCHTOWER_LABEL_ENABLE" ) ,
"Watch containers where the com.centurylinklabs.watchtower.enable label is true" )
flags . BoolP (
"debug" ,
"d" ,
viper . Get Bool( "WATCHTOWER_DEBUG" ) ,
env Bool( "WATCHTOWER_DEBUG" ) ,
"Enable debug mode with verbose logging" )
flags . BoolP (
"trace" ,
"" ,
viper . Get Bool( "WATCHTOWER_TRACE" ) ,
env Bool( "WATCHTOWER_TRACE" ) ,
"Enable trace mode with very verbose logging - caution, exposes credentials" )
flags . BoolP (
"monitor-only" ,
"m" ,
viper . Get Bool( "WATCHTOWER_MONITOR_ONLY" ) ,
env Bool( "WATCHTOWER_MONITOR_ONLY" ) ,
"Will only monitor for new images, not update the containers" )
flags . BoolP (
"run-once" ,
"R" ,
viper . Get Bool( "WATCHTOWER_RUN_ONCE" ) ,
env Bool( "WATCHTOWER_RUN_ONCE" ) ,
"Run once now and exit" )
flags . BoolP (
"include-restarting" ,
"" ,
viper . Get Bool( "WATCHTOWER_INCLUDE_RESTARTING" ) ,
env Bool( "WATCHTOWER_INCLUDE_RESTARTING" ) ,
"Will also include restarting containers" )
flags . BoolP (
"include-stopped" ,
"S" ,
viper . Get Bool( "WATCHTOWER_INCLUDE_STOPPED" ) ,
env Bool( "WATCHTOWER_INCLUDE_STOPPED" ) ,
"Will also include created and exited containers" )
flags . BoolP (
"revive-stopped" ,
"" ,
viper . Get Bool( "WATCHTOWER_REVIVE_STOPPED" ) ,
env Bool( "WATCHTOWER_REVIVE_STOPPED" ) ,
"Will also start stopped containers that were updated, if include-stopped is active" )
flags . BoolP (
"enable-lifecycle-hooks" ,
"" ,
viper . Get Bool( "WATCHTOWER_LIFECYCLE_HOOKS" ) ,
env Bool( "WATCHTOWER_LIFECYCLE_HOOKS" ) ,
"Enable the execution of commands triggered by pre- and post-update lifecycle hooks" )
flags . BoolP (
"rolling-restart" ,
"" ,
viper . Get Bool( "WATCHTOWER_ROLLING_RESTART" ) ,
env Bool( "WATCHTOWER_ROLLING_RESTART" ) ,
"Restart containers one at a time" )
flags . BoolP (
"http-api-update" ,
"" ,
viper . Get Bool( "WATCHTOWER_HTTP_API_UPDATE" ) ,
env Bool( "WATCHTOWER_HTTP_API_UPDATE" ) ,
"Runs Watchtower in HTTP API mode, so that image updates must to be triggered by a request" )
flags . BoolP (
"http-api-metrics" ,
"" ,
viper . Get Bool( "WATCHTOWER_HTTP_API_METRICS" ) ,
env Bool( "WATCHTOWER_HTTP_API_METRICS" ) ,
"Runs Watchtower with the Prometheus metrics API enabled" )
flags . StringP (
"http-api-token" ,
"" ,
viper . Get String( "WATCHTOWER_HTTP_API_TOKEN" ) ,
env String( "WATCHTOWER_HTTP_API_TOKEN" ) ,
"Sets an authentication token to HTTP API requests." )
flags . BoolP (
"http-api-periodic-polls" ,
"" ,
viper . Get Bool( "WATCHTOWER_HTTP_API_PERIODIC_POLLS" ) ,
env Bool( "WATCHTOWER_HTTP_API_PERIODIC_POLLS" ) ,
"Also run periodic updates (specified with --interval and --schedule) if HTTP API is enabled" )
// https://no-color.org/
@ -172,18 +172,18 @@ func RegisterSystemFlags(rootCmd *cobra.Command) {
flags . StringP (
"scope" ,
"" ,
viper . Get String( "WATCHTOWER_SCOPE" ) ,
env String( "WATCHTOWER_SCOPE" ) ,
"Defines a monitoring scope for the Watchtower instance." )
flags . StringP (
"porcelain" ,
"P" ,
viper . Get String( "WATCHTOWER_PORCELAIN" ) ,
env String( "WATCHTOWER_PORCELAIN" ) ,
` Write session results to stdout using a stable versioned format. Supported values: "v1" ` )
flags . String (
"log-level" ,
viper . Get String( "WATCHTOWER_LOG_LEVEL" ) ,
env String( "WATCHTOWER_LOG_LEVEL" ) ,
"The maximum log level that will be written to STDERR. Possible values: panic, fatal, error, warn, info, debug or trace" )
}
@ -194,177 +194,202 @@ func RegisterNotificationFlags(rootCmd *cobra.Command) {
flags . StringSliceP (
"notifications" ,
"n" ,
viper . Get StringSlice( "WATCHTOWER_NOTIFICATIONS" ) ,
env StringSlice( "WATCHTOWER_NOTIFICATIONS" ) ,
" Notification types to send (valid: email, slack, msteams, gotify, shoutrrr)" )
flags . String (
"notifications-level" ,
viper . Get String( "WATCHTOWER_NOTIFICATIONS_LEVEL" ) ,
env String( "WATCHTOWER_NOTIFICATIONS_LEVEL" ) ,
"The log level used for sending notifications. Possible values: panic, fatal, error, warn, info or debug" )
flags . IntP (
"notifications-delay" ,
"" ,
viper . Get Int( "WATCHTOWER_NOTIFICATIONS_DELAY" ) ,
env Int( "WATCHTOWER_NOTIFICATIONS_DELAY" ) ,
"Delay before sending notifications, expressed in seconds" )
flags . StringP (
"notifications-hostname" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATIONS_HOSTNAME" ) ,
env String( "WATCHTOWER_NOTIFICATIONS_HOSTNAME" ) ,
"Custom hostname for notification titles" )
flags . StringP (
"notification-email-from" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_EMAIL_FROM" ) ,
env String( "WATCHTOWER_NOTIFICATION_EMAIL_FROM" ) ,
"Address to send notification emails from" )
flags . StringP (
"notification-email-to" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_EMAIL_TO" ) ,
env String( "WATCHTOWER_NOTIFICATION_EMAIL_TO" ) ,
"Address to send notification emails to" )
flags . IntP (
"notification-email-delay" ,
"" ,
viper . Get Int( "WATCHTOWER_NOTIFICATION_EMAIL_DELAY" ) ,
env Int( "WATCHTOWER_NOTIFICATION_EMAIL_DELAY" ) ,
"Delay before sending notifications, expressed in seconds" )
flags . StringP (
"notification-email-server" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_EMAIL_SERVER" ) ,
env String( "WATCHTOWER_NOTIFICATION_EMAIL_SERVER" ) ,
"SMTP server to send notification emails through" )
flags . IntP (
"notification-email-server-port" ,
"" ,
viper . Get Int( "WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT" ) ,
env Int( "WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT" ) ,
"SMTP server port to send notification emails through" )
flags . BoolP (
"notification-email-server-tls-skip-verify" ,
"" ,
viper . Get Bool( "WATCHTOWER_NOTIFICATION_EMAIL_SERVER_TLS_SKIP_VERIFY" ) ,
env Bool( "WATCHTOWER_NOTIFICATION_EMAIL_SERVER_TLS_SKIP_VERIFY" ) ,
` Controls whether watchtower verifies the SMTP server ' s certificate chain and host name .
Should only be used for testing . ` )
flags . StringP (
"notification-email-server-user" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER" ) ,
env String( "WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER" ) ,
"SMTP server user for sending notifications" )
flags . StringP (
"notification-email-server-password" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD" ) ,
env String( "WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD" ) ,
"SMTP server password for sending notifications" )
flags . StringP (
"notification-email-subjecttag" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_EMAIL_SUBJECTTAG" ) ,
env String( "WATCHTOWER_NOTIFICATION_EMAIL_SUBJECTTAG" ) ,
"Subject prefix tag for notifications via mail" )
flags . StringP (
"notification-slack-hook-url" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_SLACK_HOOK_URL" ) ,
env String( "WATCHTOWER_NOTIFICATION_SLACK_HOOK_URL" ) ,
"The Slack Hook URL to send notifications to" )
flags . StringP (
"notification-slack-identifier" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_SLACK_IDENTIFIER" ) ,
env String( "WATCHTOWER_NOTIFICATION_SLACK_IDENTIFIER" ) ,
"A string which will be used to identify the messages coming from this watchtower instance" )
flags . StringP (
"notification-slack-channel" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_SLACK_CHANNEL" ) ,
env String( "WATCHTOWER_NOTIFICATION_SLACK_CHANNEL" ) ,
"A string which overrides the webhook's default channel. Example: #my-custom-channel" )
flags . StringP (
"notification-slack-icon-emoji" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_SLACK_ICON_EMOJI" ) ,
env String( "WATCHTOWER_NOTIFICATION_SLACK_ICON_EMOJI" ) ,
"An emoji code string to use in place of the default icon" )
flags . StringP (
"notification-slack-icon-url" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_SLACK_ICON_URL" ) ,
env String( "WATCHTOWER_NOTIFICATION_SLACK_ICON_URL" ) ,
"An icon image URL string to use in place of the default icon" )
flags . StringP (
"notification-msteams-hook" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_MSTEAMS_HOOK_URL" ) ,
env String( "WATCHTOWER_NOTIFICATION_MSTEAMS_HOOK_URL" ) ,
"The MSTeams WebHook URL to send notifications to" )
flags . BoolP (
"notification-msteams-data" ,
"" ,
viper . Get Bool( "WATCHTOWER_NOTIFICATION_MSTEAMS_USE_LOG_DATA" ) ,
env Bool( "WATCHTOWER_NOTIFICATION_MSTEAMS_USE_LOG_DATA" ) ,
"The MSTeams notifier will try to extract log entry fields as MSTeams message facts" )
flags . StringP (
"notification-gotify-url" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_GOTIFY_URL" ) ,
env String( "WATCHTOWER_NOTIFICATION_GOTIFY_URL" ) ,
"The Gotify URL to send notifications to" )
flags . StringP (
"notification-gotify-token" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_GOTIFY_TOKEN" ) ,
env String( "WATCHTOWER_NOTIFICATION_GOTIFY_TOKEN" ) ,
"The Gotify Application required to query the Gotify API" )
flags . BoolP (
"notification-gotify-tls-skip-verify" ,
"" ,
viper . Get Bool( "WATCHTOWER_NOTIFICATION_GOTIFY_TLS_SKIP_VERIFY" ) ,
env Bool( "WATCHTOWER_NOTIFICATION_GOTIFY_TLS_SKIP_VERIFY" ) ,
` Controls whether watchtower verifies the Gotify server ' s certificate chain and host name .
Should only be used for testing . ` )
flags . String (
"notification-template" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_TEMPLATE" ) ,
env String( "WATCHTOWER_NOTIFICATION_TEMPLATE" ) ,
"The shoutrrr text/template for the messages" )
flags . StringArray (
"notification-url" ,
viper . Get StringSlice( "WATCHTOWER_NOTIFICATION_URL" ) ,
env StringSlice( "WATCHTOWER_NOTIFICATION_URL" ) ,
"The shoutrrr URL to send notifications to" )
flags . Bool ( "notification-report" ,
viper . Get Bool( "WATCHTOWER_NOTIFICATION_REPORT" ) ,
env Bool( "WATCHTOWER_NOTIFICATION_REPORT" ) ,
"Use the session report as the notification template data" )
flags . StringP (
"notification-title-tag" ,
"" ,
viper . Get String( "WATCHTOWER_NOTIFICATION_TITLE_TAG" ) ,
env String( "WATCHTOWER_NOTIFICATION_TITLE_TAG" ) ,
"Title prefix tag for notifications" )
flags . Bool ( "notification-skip-title" ,
viper . Get Bool( "WATCHTOWER_NOTIFICATION_SKIP_TITLE" ) ,
env Bool( "WATCHTOWER_NOTIFICATION_SKIP_TITLE" ) ,
"Do not pass the title param to notifications" )
flags . String (
"warn-on-head-failure" ,
viper . Get String( "WATCHTOWER_WARN_ON_HEAD_FAILURE" ) ,
env String( "WATCHTOWER_WARN_ON_HEAD_FAILURE" ) ,
"When to warn about HEAD pull requests failing. Possible values: always, auto or never" )
flags . Bool (
"notification-log-stdout" ,
viper . Get Bool( "WATCHTOWER_NOTIFICATION_LOG_STDOUT" ) ,
env Bool( "WATCHTOWER_NOTIFICATION_LOG_STDOUT" ) ,
"Write notification logs to stdout instead of logging (to stderr)" )
}
func envString ( key string ) string {
viper . MustBindEnv ( key )
return viper . GetString ( key )
}
func envStringSlice ( key string ) [ ] string {
viper . MustBindEnv ( key )
return viper . GetStringSlice ( key )
}
func envInt ( key string ) int {
viper . MustBindEnv ( key )
return viper . GetInt ( key )
}
func envBool ( key string ) bool {
viper . MustBindEnv ( key )
return viper . GetBool ( key )
}
func envDuration ( key string ) time . Duration {
viper . MustBindEnv ( key )
return viper . GetDuration ( key )
}
// SetDefaults provides default values for environment variables
func SetDefaults ( ) {
viper . AutomaticEnv ( )