diff --git a/config/crds/troubleshoot.sh_hostcollectors.yaml b/config/crds/troubleshoot.sh_hostcollectors.yaml index 78afec317..f97deae63 100644 --- a/config/crds/troubleshoot.sh_hostcollectors.yaml +++ b/config/crds/troubleshoot.sh_hostcollectors.yaml @@ -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: diff --git a/config/crds/troubleshoot.sh_hostpreflights.yaml b/config/crds/troubleshoot.sh_hostpreflights.yaml index 4e10cb6b2..08edd1dce 100644 --- a/config/crds/troubleshoot.sh_hostpreflights.yaml +++ b/config/crds/troubleshoot.sh_hostpreflights.yaml @@ -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: diff --git a/config/crds/troubleshoot.sh_supportbundles.yaml b/config/crds/troubleshoot.sh_supportbundles.yaml index 2a702e422..633d721f6 100644 --- a/config/crds/troubleshoot.sh_supportbundles.yaml +++ b/config/crds/troubleshoot.sh_supportbundles.yaml @@ -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: diff --git a/schemas/supportbundle-troubleshoot-v1beta2.json b/schemas/supportbundle-troubleshoot-v1beta2.json index 64fad724d..41871ee04 100644 --- a/schemas/supportbundle-troubleshoot-v1beta2.json +++ b/schemas/supportbundle-troubleshoot-v1beta2.json @@ -11399,7 +11399,9 @@ "type": "object", "required": [ "args", - "command" + "command", + "config", + "outputDir" ], "properties": { "args": { @@ -11414,8 +11416,17 @@ "command": { "type": "string" }, + "config": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "exclude": { "oneOf": [{"type": "string"},{"type": "boolean"}] + }, + "outputDir": { + "type": "string" } } },