Skip to content

Commit

Permalink
Merge pull request #1286 from bgilbert/schema
Browse files Browse the repository at this point in the history
config/v3_4_exp: minor schema fixes
  • Loading branch information
bgilbert authored Nov 24, 2021
2 parents b456e4d + d33d4d7 commit 7ad438f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions config/v3_4_experimental/schema/ignition.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"noProxy": {
"type": "array",
"items": {
"type": ["string", "null"]
"type": "string"
}
}
}
Expand All @@ -141,7 +141,10 @@
}
}
}
}
},
"required": [
"version"
]
},
"storage": {
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion config/v3_4_experimental/types/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ type Ignition struct {
Proxy Proxy `json:"proxy,omitempty"`
Security Security `json:"security,omitempty"`
Timeouts Timeouts `json:"timeouts,omitempty"`
Version string `json:"version,omitempty"`
Version string `json:"version"`
}

type IgnitionConfig struct {
Expand Down

0 comments on commit 7ad438f

Please sign in to comment.