Skip to content

Commit

Permalink
Filter out empty values and remove cloudkeeper (#314)
Browse files Browse the repository at this point in the history
Filter out empty values as it was causing problems with AppDB
Remove cloudkeeper: We are not using it for now and it's not 
maintained so it makes little sense to keep it around failing the build
  • Loading branch information
enolfc authored Oct 20, 2023
1 parent 1a94d45 commit a1345be
Show file tree
Hide file tree
Showing 11 changed files with 1 addition and 336 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
image:
- cloud-info
- caso
- cloudkeeper-os
- cloudkeeper-core

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion cloud-info/ams-wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ grep -q GLUE2ShareID cloud-info.out \
ARGO_URL="https://$AMS_HOST/v1/projects/$AMS_PROJECT/topics/$AMS_TOPIC:publish?key=$AMS_TOKEN"

printf '{"messages":[{"attributes":{},"data":"' > ams-payload
grep -v "UNKNOWN" cloud-info.out | grep -v "^#" | gzip | base64 -w 0 >> ams-payload
grep -v "UNKNOWN" cloud-info.out | grep -v "^#" | grep -v ": $" | gzip | base64 -w 0 >> ams-payload
printf '"}]}' >> ams-payload

curl -X POST "$ARGO_URL" -H "content-type: application/json" -d @ams-payload
Expand Down
38 changes: 0 additions & 38 deletions cloudkeeper-core/Dockerfile

This file was deleted.

35 changes: 0 additions & 35 deletions cloudkeeper-core/cloudkeeper.yml

This file was deleted.

13 changes: 0 additions & 13 deletions cloudkeeper-core/entrypoint.sh

This file was deleted.

3 changes: 0 additions & 3 deletions cloudkeeper-core/image-lists.conf

This file was deleted.

24 changes: 0 additions & 24 deletions cloudkeeper-os/Dockerfile

This file was deleted.

136 changes: 0 additions & 136 deletions cloudkeeper-os/cloudkeeper-os.conf

This file was deleted.

9 changes: 0 additions & 9 deletions cloudkeeper-os/cloudkeeper.repo

This file was deleted.

5 changes: 0 additions & 5 deletions cloudkeeper-os/mapping.json

This file was deleted.

70 changes: 0 additions & 70 deletions cloudkeeper-os/openstack_client.py

This file was deleted.

0 comments on commit a1345be

Please sign in to comment.