Skip to content

Commit

Permalink
Merge pull request #1715 from anarkiwi/rel
Browse files Browse the repository at this point in the history
0.12.3.
  • Loading branch information
cglewis authored Jun 4, 2020
2 parents 45d67aa + 919e6a9 commit 13c4765
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 23 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# v0.12.3 (2020-06-05)

- BCF (Bigswitch Cloud Fabric) support is deprecated and will be removed in the next release
- Experimental support for docker swarms
- When FAUCET stacking is detected, do not redundantly learn endpoints on stack links
- Update faucet, gauge, event-adapter-rabbit-mq, buildx, pytype, docker, redis, grafana, pytest


# v0.12.2 (2020-05-21)

- Fix API not updated with networkml/p0f results.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.3.dev
0.12.3
19 changes: 5 additions & 14 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ version: '3.7'
services:
redis:
restart: always
image: 'cyberreboot/redis:latest'
image: 'cyberreboot/redis:v0.12.3'
volumes:
- '${POSEIDON_PREFIX}/opt/redis:/data'
networks:
poseidon:
rabbit:
restart: always
image: 'cyberreboot/rabbitmq:latest'
image: 'cyberreboot/rabbitmq:v0.12.3'
ports:
- '127.0.0.1:15672:15672'
- '5672:5672'
Expand Down Expand Up @@ -41,7 +41,7 @@ services:
- poseidon
poseidon_api:
restart: always
image: 'cyberreboot/poseidon-api:latest'
image: 'cyberreboot/poseidon-api:v0.12.3'
ports:
- '5000:8000'
environment:
Expand All @@ -52,12 +52,9 @@ services:
- poseidon-api
depends_on:
- poseidon
build:
context: api
dockerfile: Dockerfile
poseidon:
restart: always
image: 'cyberreboot/poseidon:latest'
image: 'cyberreboot/poseidon:v0.12.3'
environment:
PYTHONUNBUFFERED: '1'
volumes:
Expand All @@ -70,12 +67,9 @@ services:
depends_on:
- rabbit
- redis
build:
context: .
dockerfile: Dockerfile
workers:
restart: always
image: 'cyberreboot/poseidon-workers:latest'
image: 'cyberreboot/poseidon-workers:v0.12.3'
environment:
PYTHONUNBUFFERED: '1'
KEEPIMAGES: '0'
Expand All @@ -87,9 +81,6 @@ services:
- '/var/run/docker.sock:/var/run/docker.sock'
depends_on:
- poseidon
build:
context: workers
dockerfile: Dockerfile
networks:
poseidon:
driver: overlay
8 changes: 4 additions & 4 deletions release/update_workers_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
print('no release for %s, skipping update' % worker['image'])
continue
latest_json = json.loads(res.read().decode('utf-8'))
latest_name = latest_json['name']
if latest_name != latest_json['name']:
changes.add((repo, latest_json['name']))
worker['version'] = latest_name
latest_version = latest_json['name']
if worker['version'] != latest_version:
changes.add((repo, latest_version))
worker['version'] = latest_version

with open(WORKERS_JSON, 'w') as f:
f.write(json.dumps(workers, indent=2, sort_keys=True))
Expand Down
8 changes: 4 additions & 4 deletions workers/workers.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"pcap"
],
"stage": "poseidon_poseidon",
"version": "v0.11.9",
"version": "v0.11.10",
"viewableOutput": false
},
{
Expand All @@ -25,7 +25,7 @@
"pcap"
],
"stage": "poseidon_poseidon",
"version": "v0.11.9",
"version": "v0.11.10",
"viewableOutput": false
},
{
Expand All @@ -51,7 +51,7 @@
"rabbitmq"
],
"stage": "poseidon_poseidon",
"version": "v0.5.4",
"version": "v0.5.5",
"viewableOutput": true
},
{
Expand All @@ -73,7 +73,7 @@
"rabbitmq"
],
"stage": "poseidon_poseidon",
"version": "v0.11.9",
"version": "v0.11.10",
"viewableOutput": true
},
{
Expand Down

0 comments on commit 13c4765

Please sign in to comment.