-
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.
test fabric modify add + delete nodes
- Loading branch information
Showing
5 changed files
with
103 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: Ubuntu22.04 Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- knit8 | ||
workflow_dispatch: | ||
|
||
env: | ||
FABRIC_TOKEN: ${{ secrets.FABRIC_TOKEN }} | ||
FABRIC_BASTION_KEY: ${{ secrets.FABRIC_BASTION_KEY }} | ||
FABRIC_SLIVER_KEY: ${{ secrets.FABRIC_SLIVER_KEY }} | ||
FABRIC_SLIVER_PUBKEY: ${{ secrets.FABRIC_SLIVER_PUBKEY }} | ||
FABRIC_PROJECT: ${{ secrets.FABRIC_PROJECT }} | ||
FABRIC_USER: ${{ secrets.FABRIC_USER }} | ||
|
||
jobs: | ||
UbuntuTest: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Fabfed And Requirements | ||
run: | | ||
pip install --upgrade pip | ||
pip install setuptools --upgrade | ||
pip install --no-cache-dir --ignore-requires-python neo4j==5.18.0 | ||
pip list -v | grep neo4j | ||
pip install --no-cache-dir --ignore-requires-python -r requirements.txt | ||
python3 -m pip install --no-cache-dir . | ||
pip install --no-cache-dir git+https://gitlab.flux.utah.edu/stoller/portal-tools.git | ||
- name: Save Credentials | ||
run: | | ||
mkdir -p ${{ github.workspace }}/creds | ||
echo ${{ env.FABRIC_TOKEN }} | base64 --decode > ${{ github.workspace }}/creds/token.json | ||
echo ${{ env.FABRIC_BASTION_KEY }} | base64 --decode > ${{ github.workspace }}/creds/bastion | ||
echo ${{ env.FABRIC_SLIVER_KEY }} | base64 --decode > ${{ github.workspace }}/creds/sliver | ||
echo ${{ env.FABRIC_SLIVER_PUBKEY }} | base64 --decode > ${{ github.workspace }}/creds/sliver.pub | ||
- name: Test Fabric Modify with FacilityPort 0 nodes | ||
run: | | ||
export DO_NOT_DESTROY=1 | ||
session=cicd-fabric-facility-port | ||
echo "vlan: 3103" > $session-varfile.yml | ||
echo "node_count: 0" >> $session-varfile.yml | ||
${{ github.workspace }}/cicd/run-fabfed.sh cicd/test_configs/fabric_facility_port $session $session-varfile.yml | ||
- name: Test Fabric Modify with FacilityPort Add One Node | ||
run: | | ||
export DO_NOT_DESTROY=1 | ||
session=cicd-fabric-facility-port | ||
echo "vlan: 3103" > $session-varfile.yml | ||
echo "node_count: 1" >> $session-varfile.yml | ||
${{ github.workspace }}/cicd/run-fabfed.sh cicd/test_configs/fabric_facility_port $session $session-varfile.yml | ||
- name: Test Fabric Modify with FacilityPort Add Another Node | ||
run: | | ||
export DO_NOT_DESTROY=1 | ||
session=cicd-fabric-facility-port | ||
echo "vlan: 3103" > $session-varfile.yml | ||
echo "node_count: 2" >> $session-varfile.yml | ||
${{ github.workspace }}/cicd/run-fabfed.sh cicd/test_configs/fabric_facility_port $session $session-varfile.yml | ||
- name: Test Fabric Modify with FacilityPort Remove One Node | ||
run: | | ||
export DO_NOT_DESTROY=1 | ||
session=cicd-fabric-facility-port | ||
echo "vlan: 3103" > $session-varfile.yml | ||
echo "node_count: 1" >> $session-varfile.yml | ||
${{ github.workspace }}/cicd/run-fabfed.sh cicd/test_configs/fabric_facility_port $session $session-varfile.yml | ||
- name: Test Fabric Modify with FacilityPort Remove One Node | ||
run: | | ||
export DO_NOT_DESTROY=1 | ||
session=cicd-fabric-facility-port | ||
echo "vlan: 3103" > $session-varfile.yml | ||
echo "node_count: 0" >> $session-varfile.yml | ||
${{ github.workspace }}/cicd/run-fabfed.sh cicd/test_configs/fabric_facility_port $session $session-varfile.yml | ||
- name: Test Fabric Modify with FacilityPort Destroy | ||
run: | | ||
export DO_NOT_DESTROY=0 | ||
session=cicd-fabric-facility-port | ||
echo "vlan: 3103" > $session-varfile.yml | ||
echo "node_count: 0" >> $session-varfile.yml | ||
${{ github.workspace }}/cicd/run-fabfed.sh cicd/test_configs/fabric_facility_port $session $session-varfile.yml |
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
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