Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
f8041db
Initial commit
mrwesadex-flant Dec 12, 2025
66a3f5a
Flags and env.go have been added
mrwesadex-flant Dec 12, 2025
0ed3795
Structure a bit updated
mrwesadex-flant Dec 12, 2025
704011f
kubeconfig is finally obtained and stored in temp
mrwesadex-flant Dec 12, 2025
d768fd3
ssh tunnel established to the base cluster's master
mrwesadex-flant Dec 12, 2025
0d50870
Ginkgo logging enabled and pre-configured
mrwesadex-flant Dec 12, 2025
8539b17
module,mc and mpo processing added
mrwesadex-flant Dec 12, 2025
6c12003
Cleanup re-worked
mrwesadex-flant Dec 12, 2025
914f26b
Context updated
mrwesadex-flant Dec 12, 2025
25416e2
Refactor cluster creation configuration: replace flag-based options w…
mrwesadex-flant Dec 12, 2025
5d8b77a
Remove unused FindFreePort function and update EstablishSSHTunnel to …
mrwesadex-flant Dec 12, 2025
ce8b988
Update README and add RedOS images configuration; created new cluster…
mrwesadex-flant Dec 14, 2025
ff1a9a6
Add AutoGenerateVMNames environment variable and update cloud-config …
mrwesadex-flant Dec 14, 2025
f7f8cce
Creating and waiting for VMs - implemented
mrwesadex-flant Dec 15, 2025
a5c7efe
Add virtualization client creation in cluster creation tests
mrwesadex-flant Dec 15, 2025
69f2193
VMs have been deployed successfully
mrwesadex-flant Dec 16, 2025
7acc7fb
Refactoring and TODOs implementations
mrwesadex-flant Dec 16, 2025
52e4d84
Refactor cluster creation tests to use direct configuration access fo…
mrwesadex-flant Dec 16, 2025
e07adaf
Refactor environment variable handling for test cluster configuration…
mrwesadex-flant Dec 16, 2025
da33597
Enhance environment variable validation in cluster creation tests by …
mrwesadex-flant Dec 16, 2025
e2c3e4e
Update README.md to enhance documentation for E2E tests, including de…
mrwesadex-flant Dec 16, 2025
cf52d51
Refactor TODO.md for clarity and completeness; remove redundant entri…
mrwesadex-flant Dec 16, 2025
0de0c1c
Enhance SSH client functionality by introducing NewClientWithJumpHost…
mrwesadex-flant Dec 17, 2025
412d47a
Setup VM is now added by default with Ubuntu, remove after the bootst…
mrwesadex-flant Dec 17, 2025
0f13b67
Update readme, refactored cleanup, setup node processing, VMs are cre…
mrwesadex-flant Dec 18, 2025
cf3148d
Enhance ClusterNode configuration by adding CoreFraction field for CP…
mrwesadex-flant Dec 18, 2025
964b1cb
Bootstrap worked
mrwesadex-flant Dec 18, 2025
f14dba5
Re-establishing ssh tunnel to remove bootstrap VM
mrwesadex-flant Dec 18, 2025
fcda22a
Connection to test cluster established and simple health check implem…
mrwesadex-flant Dec 18, 2025
4cabc30
Removed unneded interfaces, added stress-tests and fix for CheckClust…
mrwesadex-flant Dec 19, 2025
2068852
Removed 3par...
mrwesadex-flant Dec 19, 2025
21f4d55
Cluster is now deployed and checked.
mrwesadex-flant Dec 22, 2025
82b77d7
Migration to Deckhouse entirely
mrwesadex-flant Dec 22, 2025
f209e54
Nodes are added, modules are not enabled yet
mrwesadex-flant Dec 23, 2025
7b56019
Storage class envvar is now required, readm updated
mrwesadex-flant Dec 23, 2025
0286ad4
kubectl path problem fixed
mrwesadex-flant Dec 23, 2025
1fbd195
Cluster has been deployed successfully with modules enabled and confi…
mrwesadex-flant Dec 23, 2025
d983137
test-template has been created
mrwesadex-flant Dec 23, 2025
c987d60
README for test-template - added
mrwesadex-flant Dec 23, 2025
766ecf7
Update README.md to reflect changes in test suite instructions and pr…
mrwesadex-flant Dec 23, 2025
b006591
test-template createcluster fix
mrwesadex-flant Dec 24, 2025
552b52a
Cleanup logging fix
mrwesadex-flant Dec 24, 2025
ae80517
envvar output improved a bit
mrwesadex-flant Dec 24, 2025
5515e41
virtualization check is disabled
mrwesadex-flant Dec 25, 2025
d97c637
Improve VM creation workflow and add configuration options
IvanOgurchenok Dec 25, 2025
aa4cb3e
move cloud-init to K8s Secret, improve SSH key handling
IvanOgurchenok Dec 26, 2025
c57ad77
removed hostname check DVP set up is as expected.
IvanOgurchenok Dec 26, 2025
36fce40
parallel worker bootstrap, webhook retry, kubectl aliases
IvanOgurchenok Dec 26, 2025
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
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Test artifacts
temp/

# IDE
.idea/
.vscode/
*.swp
*.swo
*~

# Go
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
go.work
go.work.sum

# OS
.DS_Store
Thumbs.db

Loading