Skip to content

Commit

Permalink
chore(schema): update talconfig.yaml JSON schema (#842)
Browse files Browse the repository at this point in the history
Co-authored-by: budimanjojo-bot <111944664+budimanjojo-bot[bot]@users.noreply.github.com>
  • Loading branch information
budimanjojo-bot[bot] authored Feb 9, 2025
1 parent fa05162 commit 3802fa0
Showing 1 changed file with 38 additions and 8 deletions.
46 changes: 38 additions & 8 deletions pkg/config/schemas/talconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,28 @@
"additionalProperties": false,
"type": "object"
},
"ClusterInlineManifest": {
"properties": {
"name": {
"type": "string"
},
"contents": {
"type": "string"
},
"skipEnvsubst": {
"type": "boolean",
"description": "Whether to skip envsubst to the contents (only for contents in another file)"
}
},
"additionalProperties": false,
"type": "object"
},
"ClusterInlineManifests": {
"items": {
"$ref": "#/$defs/ClusterInlineManifest"
},
"type": "array"
},
"ConfigFile": {
"properties": {
"content": {
Expand Down Expand Up @@ -542,11 +564,21 @@
},
"op": {
"type": "string"
},
"skipEnvsubst": {
"type": "boolean",
"description": "Whether to skip envsubst to the contents (only for contents in another file)"
}
},
"additionalProperties": false,
"type": "object"
},
"MachineFiles": {
"items": {
"$ref": "#/$defs/MachineFile"
},
"type": "array"
},
"MachineSpec": {
"properties": {
"mode": {
Expand Down Expand Up @@ -719,10 +751,7 @@
"description": "List of additional disks to partition"
},
"machineFiles": {
"items": {
"$ref": "#/$defs/MachineFile"
},
"type": "array",
"$ref": "#/$defs/MachineFiles",
"description": "List of files to create inside the node"
},
"disableSearchDomain": {
Expand Down Expand Up @@ -844,10 +873,7 @@
"description": "List of additional disks to partition"
},
"machineFiles": {
"items": {
"$ref": "#/$defs/MachineFile"
},
"type": "array",
"$ref": "#/$defs/MachineFiles",
"description": "List of files to create inside the node"
},
"disableSearchDomain": {
Expand Down Expand Up @@ -1101,6 +1127,10 @@
"type": "array",
"description": "Extra certificate SANs for the API server's certificate"
},
"inlineManifests": {
"$ref": "#/$defs/ClusterInlineManifests",
"description": "A list of inline Kubernetes manifests for the cluster"
},
"clusterPodNets": {
"items": {
"type": "string"
Expand Down

0 comments on commit 3802fa0

Please sign in to comment.