-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #704 from Netcracker/CPDEV-108608_Close_all_high_a…
…nd_critical_vulnerabilities_in_Kubemarine [CPDEV-108608] Close_all_high_and_critical_vulnerabilities_Kubemarine
- Loading branch information
Showing
18 changed files
with
12,655 additions
and
291 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Copyright 2021-2023 NetCracker Technology Corporation | ||
# | ||
# 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. | ||
|
||
from textwrap import dedent | ||
|
||
from kubemarine.core.action import Action | ||
from kubemarine.core.patch import InventoryOnlyPatch | ||
from kubemarine.core.resources import DynamicResources | ||
|
||
|
||
class TheAction(Action): | ||
def __init__(self) -> None: | ||
super().__init__("Set previous default Kubernetes version", recreate_inventory=True) | ||
|
||
def run(self, res: DynamicResources) -> None: | ||
logger = res.logger() | ||
inventory = res.inventory() | ||
if 'kubernetesVersion' not in inventory.get('services', {}).get('kubeadm', {}): | ||
logger.debug("Set services.kubeadm.kubernetesVersion = v1.28.12 in the inventory") | ||
inventory.setdefault('services', {}).setdefault('kubeadm', {})['kubernetesVersion'] = 'v1.28.12' | ||
else: | ||
logger.info("Skipping the patch as services.kubeadm.kubernetesVersion is explicitly provided.") | ||
|
||
|
||
class PinKubernetesVersion(InventoryOnlyPatch): | ||
def __init__(self) -> None: | ||
super().__init__("pin_kubernetes_version") | ||
|
||
@property | ||
def action(self) -> Action: | ||
return TheAction() | ||
|
||
@property | ||
def description(self) -> str: | ||
return dedent( | ||
f"""\ | ||
The patch sets previous default Kubernetes version in the inventory if the version was not explicitly specified. | ||
""".rstrip() | ||
) |
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
Oops, something went wrong.