Skip to content

Commit

Permalink
Merge pull request #17944 from jakesmith/HPCC-30642-schema-gracetime
Browse files Browse the repository at this point in the history
HPCC-30642 Update helm schema for terminationGracePeriodSeconds

Reviewed-by: Gavin Halliday <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Oct 25, 2023
2 parents 4a983bf + 46fcc5e commit 00c794c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions helm/hpcc/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1271,6 +1271,10 @@
},
"egress": {
"$ref" : "#/definitions/egress"
},
"terminationGracePeriodSeconds": {
"$ref": "#/definitions/terminationGracePeriodSeconds",
"default": 3600
}
}
},
Expand Down Expand Up @@ -1342,6 +1346,9 @@
"type": "string",
"description": "The default repo version used if not supplied for the defaultRepo"
},
"terminationGracePeriodSeconds": {
"$ref": "#/definitions/terminationGracePeriodSeconds"
},
"resources": {
"$ref": "#/definitions/resources"
},
Expand Down Expand Up @@ -1384,6 +1391,9 @@
},
"resources": {
"$ref": "#/definitions/resources"
},
"terminationGracePeriodSeconds": {
"$ref": "#/definitions/terminationGracePeriodSeconds"
}
}
},
Expand Down Expand Up @@ -3166,6 +3176,12 @@
}
},
"required": [ "name", "type", "target" ]
},
"terminationGracePeriodSeconds": {
"type": "integer",
"description": "Period permitted for component to terminate gracefully before being killed by Kubernetes",
"default": 600,
"minimum": 0
}
}
}

0 comments on commit 00c794c

Please sign in to comment.