Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.0 release branch for v4 based module support #522

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
26e2b18
Sync main branch with 1.9.0, 1.9.1 and 1.9.2 releases from public rep…
bhati-pradeep Jul 7, 2024
ba12545
Add v4 sdk to requirmnets file (#82)
alaa-bish Jul 25, 2024
94f5efb
v4 based modules for IAM, Networks, Flow microseg, IAM, VGs, VMM, sto…
bhati-pradeep Dec 9, 2024
0a91eaa
Merge branch 'release/2.0' of github.com:nutanix/nutanix.ansible into…
bhati-pradeep Dec 9, 2024
42e0d70
Adding Fix for GPU module with black and isort fixes for other module…
george-ghawali Dec 9, 2024
abd91e3
Added v4 sdks version in requirements.txt
abhinavbansal29 Dec 9, 2024
8f876cf
fix ansible lint (#523)
abhinavbansal29 Dec 9, 2024
142f8d1
Added disabled in all the tests except roles_v2
abhinavbansal29 Dec 9, 2024
30f33fd
Merge branch 'main' into release/2.0
bhati-pradeep Dec 9, 2024
476765b
Adding examples&sample for expanding cluster
george-ghawali Dec 10, 2024
410610c
enable all VMM V4 modules
george-ghawali Dec 10, 2024
4728116
disable roles V4 module
george-ghawali Dec 10, 2024
236a1d9
Workaround for saml ipds test cases. (#527)
abhinavbansal29 Dec 10, 2024
fdbff91
Merge branch 'release/2.0' of https://github.com/nutanix/nutanix.ansi…
george-ghawali Dec 10, 2024
0cc9b05
Adding integration fixes for V4 modules
george-ghawali Dec 10, 2024
8b8d02a
Adding fix for deleting users using V3 module (#526)
george-ghawali Dec 10, 2024
6109a00
Merge pull request #528 from nutanix/task/V4-integration-fixes
george-ghawali Dec 10, 2024
f3ac539
Merge pull request #525 from nutanix/task/cluster-expanding-docs
george-ghawali Dec 10, 2024
f4ca0ab
enable all modules except GPUs
george-ghawali Dec 10, 2024
e3a3dfe
Adding separate variables for clusters crud and expanding
george-ghawali Dec 11, 2024
28ff3e9
enable logs in loops
george-ghawali Dec 11, 2024
fb1427a
Fixed some test cases (#531)
abhinavbansal29 Dec 11, 2024
729ec6b
resolving comments
george-ghawali Dec 11, 2024
2b0d8be
Merge pull request #532 from nutanix/task/enable-logs-in-loops
george-ghawali Dec 11, 2024
6278267
Merge pull request #530 from nutanix/task/clusters-crud-and-expanding…
george-ghawali Dec 11, 2024
0ca2387
Adding integration fixes for V3 (#533)
george-ghawali Dec 12, 2024
cbd3050
Enable v3 tests
bhati-pradeep Dec 12, 2024
013c7b4
Adding fix when categories are not coming in order in the response (#…
george-ghawali Dec 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
24 changes: 24 additions & 0 deletions .github/workflows/ansible-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: ansible-lint
# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
on:
- pull_request

jobs:
build:
name: Ansible Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x (latest)
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Run ansible-lint
uses: ansible/ansible-lint@main
14 changes: 8 additions & 6 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
---
name: Black
# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
on:
push:
branches:
- main
pull_request:
branches:
- main
- pull_request

jobs:
black:
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
---
name: Flake8
# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
on:
push:
branches:
- main
pull_request:
branches:
- main
- pull_request

jobs:
flake8:
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/isort.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
---
name: Isort
# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
on:
push:
branches:
- main
pull_request:
branches:
- main
- pull_request

jobs:
isort:
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/unit_testing.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
---
name: Run compile and tests

# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
on:
push:
branches:
- main
pull_request:
branches:
- main
- pull_request
jobs:
sanity1:
name: Sanity tests with ansible-core==2.15.0
Expand Down
Loading
Loading