Skip to content

Commit

Permalink
add HTTPCallbackAddress, needed when running within a kubernetes cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
lknite committed Nov 27, 2024
1 parent 3c943cc commit 7f2ae73
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions multistep/commonsteps/http_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ type HTTPConfig struct {
// This is the bind address for the HTTP server. Defaults to 0.0.0.0 so that
// it will work with any network interface.
HTTPAddress string `mapstructure:"http_bind_address"`
// Use to specify a specific ip/fqdn a vm should use to reach the callback http server upon completion.
// This is required when running via workflows/pipelines which are running within a kubernetes cluster.
HTTPCallbackAddress string `mapstructure:"http_callback_address"`
// This is the bind interface for the HTTP server. Defaults to the first
// interface with a non-loopback address. Either `http_bind_address` or
// `http_interface` can be specified.
Expand Down

0 comments on commit 7f2ae73

Please sign in to comment.