-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip to add better support for node groups/autoscaling on gke
This is still risky to do - the GKE clusters self update and often render in a state that is not usable. But this is still better than the current setup. When I am brave I will try bringing this up again. Another issue here is by using a region, we set a min/max for EACH region so it can result in 3-4x the number of nodes that are expected (not a great surprise imho). Signed-off-by: vsoch <[email protected]>
- Loading branch information
Showing
3 changed files
with
142 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Copyright 2023 Lawrence Livermore National Security, LLC and other | ||
# Copyright 2023-2024 Lawrence Livermore National Security, LLC and other | ||
# HPCIC DevTools Developers. See the top-level COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: (MIT) | ||
|
||
__version__ = "0.0.18" | ||
__version__ = "0.0.19" | ||
AUTHOR = "Vanessa Sochat" | ||
EMAIL = "[email protected]" | ||
NAME = "kubescaler" | ||
|