Skip to content

Commit

Permalink
Merge pull request #9 from synackd/fix-for-smd
Browse files Browse the repository at this point in the history
Update SMD to OpenCHAMI version
  • Loading branch information
alexlovelltroy authored Jan 19, 2024
2 parents 2c7b858 + bf6ab4f commit 7728de2
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ ct_image:
docker build --no-cache -f test/ct/Dockerfile test/ct/ --tag hms-bss-hmth-test:${VERSION}

docker: $(BINARIES)
docker build --tag openchami/bss:$(VERSION)-dirty .
docker build --tag openchami/bss:v$(VERSION)-dirty .
4 changes: 2 additions & 2 deletions docker-compose.bss-debugger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
- smd
smd-init:
hostname: smd-init
image: bikeshack/smd:v2.12.11-ochami
image: ghcr.io/openchami/smd:v2.13.5
environment:
- SMD_DBHOST=postgres-smd
- SMD_DBPORT=5432
Expand All @@ -44,7 +44,7 @@ services:
command: ["/smd-init"]
smd:
hostname: smd
image: bikeshack/smd:v2.12.11-ochami
image: ghcr.io/openchami/smd:v2.13.5
environment:
- SMD_DBHOST=postgres-smd
- SMD_DBPORT=5432
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.test.postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
- smd
smd-init:
hostname: smd-init
image: bikeshack/smd:v2.12.11-ochami
image: ghcr.io/openchami/smd:v2.13.5
environment:
- SMD_DBHOST=postgres-smd
- SMD_DBPORT=5432
Expand All @@ -44,7 +44,7 @@ services:
command: ["/smd-init"]
smd:
hostname: smd
image: bikeshack/smd:v2.12.11-ochami
image: ghcr.io/openchami/smd:v2.13.5
environment:
- SMD_DBHOST=postgres-smd
- SMD_DBPORT=5432
Expand Down
4 changes: 2 additions & 2 deletions test/ct/postgres/tests/mac/02-smd-get-components.hurl
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ Content-Type: application/json
jsonpath "$.Components[*].ID" includes "x0c0s1b0"
jsonpath "$.Components[*].ID" includes "x0c0s3b0"
jsonpath "$.Components[0].Type" == "Node"
jsonpath "$.Components[0].Enabled" == false # This should be set to true eventually.
jsonpath "$.Components[0].Enabled" == true
jsonpath "$.Components[1].Type" == "Node"
jsonpath "$.Components[1].Enabled" == false # This should be set to true eventually.
jsonpath "$.Components[1].Enabled" == true
4 changes: 2 additions & 2 deletions test/ct/postgres/tests/nid/02-smd-get-components.hurl
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ Content-Type: application/json
jsonpath "$.Components[*].ID" includes "x0c0s1b0"
jsonpath "$.Components[*].ID" includes "x0c0s3b0"
jsonpath "$.Components[0].Type" == "Node"
jsonpath "$.Components[0].Enabled" == false # This should be set to true eventually.
jsonpath "$.Components[0].Enabled" == true
jsonpath "$.Components[1].Type" == "Node"
jsonpath "$.Components[1].Enabled" == false # This should be set to true eventually.
jsonpath "$.Components[1].Enabled" == true
4 changes: 2 additions & 2 deletions test/ct/postgres/tests/xname/02-smd-get-components.hurl
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ Content-Type: application/json
jsonpath "$.Components[*].ID" includes "x0c0s1b0"
jsonpath "$.Components[*].ID" includes "x0c0s3b0"
jsonpath "$.Components[0].Type" == "Node"
jsonpath "$.Components[0].Enabled" == false # This should be set to true eventually.
jsonpath "$.Components[0].Enabled" == true
jsonpath "$.Components[1].Type" == "Node"
jsonpath "$.Components[1].Enabled" == false # This should be set to true eventually.
jsonpath "$.Components[1].Enabled" == true

0 comments on commit 7728de2

Please sign in to comment.