Skip to content

Commit 4aa2e1a

Browse files
authored
fix kuber version (#114)
* update * fix(kuber ansible): fix kuber version
1 parent 6c7bc37 commit 4aa2e1a

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

app/models/ansible_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class AnsibleInstallKuber(AnsibleBase):
3838
k8s_worker_nodes: List[str]
3939
k8s_master_nodes: List[str]
4040
lb_nodes: List[str]
41-
version:str = "1.31.2"
41+
version:str = "1.31"
4242

4343

4444
@validator("os")

app/routes/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def zip_folder(folder_path: str, output_zip_path: str):
1414
# Add file to the zip file
1515
zip_file.write(file_path, os.path.relpath(file_path, folder_path))
1616

17+
1718
def add_files_to_folder(files:list,folder:str):
1819

1920
os.makedirs(folder, exist_ok=True)

0 commit comments

Comments
 (0)