Skip to content

Commit

Permalink
chore: udpate schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
York Chen committed Aug 4, 2023
1 parent 9900384 commit ec01287
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 1 deletion.
8 changes: 8 additions & 0 deletions config/crds/troubleshoot.sh_hostcollectors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1353,11 +1353,19 @@ spec:
type: string
command:
type: string
config:
additionalProperties:
type: string
type: object
exclude:
type: BoolString
outputDir:
type: string
required:
- args
- command
- config
- outputDir
type: object
subnetAvailable:
properties:
Expand Down
8 changes: 8 additions & 0 deletions config/crds/troubleshoot.sh_hostpreflights.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1353,11 +1353,19 @@ spec:
type: string
command:
type: string
config:
additionalProperties:
type: string
type: object
exclude:
type: BoolString
outputDir:
type: string
required:
- args
- command
- config
- outputDir
type: object
subnetAvailable:
properties:
Expand Down
8 changes: 8 additions & 0 deletions config/crds/troubleshoot.sh_supportbundles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11613,11 +11613,19 @@ spec:
type: string
command:
type: string
config:
additionalProperties:
type: string
type: object
exclude:
type: BoolString
outputDir:
type: string
required:
- args
- command
- config
- outputDir
type: object
subnetAvailable:
properties:
Expand Down
13 changes: 12 additions & 1 deletion schemas/supportbundle-troubleshoot-v1beta2.json
Original file line number Diff line number Diff line change
Expand Up @@ -11399,7 +11399,9 @@
"type": "object",
"required": [
"args",
"command"
"command",
"config",
"outputDir"
],
"properties": {
"args": {
Expand All @@ -11414,8 +11416,17 @@
"command": {
"type": "string"
},
"config": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"exclude": {
"oneOf": [{"type": "string"},{"type": "boolean"}]
},
"outputDir": {
"type": "string"
}
}
},
Expand Down

0 comments on commit ec01287

Please sign in to comment.