Skip to content

Commit

Permalink
OCM-7288 | Add maxUnavailable and maxSurge for HCP NodePools
Browse files Browse the repository at this point in the history
  • Loading branch information
philipwu08 committed May 9, 2024
1 parent cc7fcfd commit d1dc00f
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
30 changes: 30 additions & 0 deletions model/clusters_mgmt/v1/node_pool_management_type.model
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
Copyright (c) 2024 Red Hat, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// Representation of node pool management.
class NodePoolManagement {
// Type of strategy used to upgrade the nodes in the NodePool of a ROSA HCP cluster
UpgradeType String

// The strategy used to upgrade the nodes in the NodePool of a ROSA HCP cluster
UpgradeStrategy String

// Maximum number of nodes in the NodePool of a ROSA HCP cluster that can be unavailable during the upgrade.
MaxUnavailable String

// Maximum number of nodes in the NodePool of a ROSA HCP cluster that can be scheduled above the desired number of nodes during the upgrade.
MaxSurge String
}
3 changes: 3 additions & 0 deletions model/clusters_mgmt/v1/node_pool_type.model
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,7 @@ class NodePool {

// Time to wait for a NodePool to drain when it is upgraded or replaced before it is forcibly removed.
NodeDrainGracePeriod Value

// Management parameters (Optional).
Management NodePoolManagement
}

0 comments on commit d1dc00f

Please sign in to comment.