Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HPCC-30642 Update helm schema for terminationGracePeriodSeconds #17944

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
}
}
Loading