Skip to content

Commit

Permalink
Fix temporaryDist default value issue (Azure#14444)
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinfish authored and mkarmark committed Jul 20, 2021
1 parent 35af110 commit 7248fad
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2857,8 +2857,7 @@
},
"temporaryDisk": {
"$ref": "#/definitions/TemporaryDisk",
"description": "Temporary disk settings",
"default": "/tmp"
"description": "Temporary disk settings"
},
"persistentDisk": {
"$ref": "#/definitions/PersistentDisk",
Expand All @@ -2879,7 +2878,8 @@
},
"mountPath": {
"description": "Mount path of the temporary disk",
"type": "string"
"type": "string",
"default": "/tmp"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3443,8 +3443,7 @@
},
"temporaryDisk": {
"$ref": "#/definitions/TemporaryDisk",
"description": "Temporary disk settings",
"default": "/tmp"
"description": "Temporary disk settings"
},
"persistentDisk": {
"$ref": "#/definitions/PersistentDisk",
Expand All @@ -3470,7 +3469,8 @@
},
"mountPath": {
"description": "Mount path of the temporary disk",
"type": "string"
"type": "string",
"default": "/tmp"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3419,8 +3419,7 @@
},
"temporaryDisk": {
"$ref": "#/definitions/TemporaryDisk",
"description": "Temporary disk settings",
"default": "/tmp"
"description": "Temporary disk settings"
},
"persistentDisk": {
"$ref": "#/definitions/PersistentDisk",
Expand All @@ -3441,7 +3440,8 @@
},
"mountPath": {
"description": "Mount path of the temporary disk",
"type": "string"
"type": "string",
"default": "/tmp"
}
}
},
Expand Down

0 comments on commit 7248fad

Please sign in to comment.