Skip to content

Commit

Permalink
fix: add json field tags to daemon (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
KellyMerrick committed Apr 6, 2021
1 parent 21381d1 commit fdce13b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/vela-docker/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ type (
// enable experimental features
Experimental bool
// enables insecure registry communication
InsecureRegistries []string
InsecureRegistries []string `json:"insecure_registries"`
// enables IPv6 networking
IPV6 bool
// enable setting the log level for the daemon
LogLevel string `json:"log_level"`
// enable setting the containers network MTU
MTU int
// enables setting a preferred Docker registry mirror
RegistryMirrors []string
RegistryMirrors []string `json:"registry_mirrors"`
// used for translating the storage configuration
Storage *Storage
// enables setting custom storage options
Expand Down

0 comments on commit fdce13b

Please sign in to comment.