Skip to content

Commit 030de4b

Browse files
committed
remove required on pull strategy
1 parent 1e79db9 commit 030de4b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

framework/components/blockchain/blockchain.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type Input struct {
99
Type string `toml:"type" validate:"required,oneof=anvil geth" envconfig:"net_type"`
1010
Image string `toml:"image" validate:"required"`
1111
Tag string `toml:"tag" validate:"required"`
12-
PullImage bool `toml:"pull_image" validate:"required"`
12+
PullImage bool `toml:"pull_image"`
1313
Port string `toml:"port" validate:"required"`
1414
ChainID string `toml:"chain_id" validate:"required"`
1515
DockerCmdParamsOverrides []string `toml:"docker_cmd_params"`

framework/components/clnode/clnode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type Input struct {
2626
type NodeInput struct {
2727
Image string `toml:"image" validate:"required"`
2828
Tag string `toml:"tag" validate:"required"`
29-
PullImage bool `toml:"pull_image" validate:"required"`
29+
PullImage bool `toml:"pull_image"`
3030
Port string `toml:"port" validate:"required"`
3131
TestConfigOverrides string `toml:"test_config_overrides"`
3232
UserConfigOverrides string `toml:"user_config_overrides"`

framework/components/postgres/postgres.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
type Input struct {
1414
Image string `toml:"image" validate:"required"`
1515
Tag string `toml:"tag" validate:"required"`
16-
PullImage bool `toml:"pull_image" validate:"required"`
16+
PullImage bool `toml:"pull_image"`
1717
User string `toml:"user" validate:"required"`
1818
Password string `toml:"password" validate:"required"`
1919
Database string `toml:"database" validate:"required"`

0 commit comments

Comments
 (0)