Skip to content

Commit

Permalink
Merge branch 'master' into frontend_refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
pgigis committed Apr 17, 2019
2 parents f0b16f1 + 9f62fbc commit 28d4bcd
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 8 deletions.
22 changes: 19 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

## [UNRELEASED] (NAME) - YYYY-MM-DD
### Added
- TBD (Added a new feature)

### Changed
- TBD (Changed existing functionality)

### Fixed
- TBD (bug-fix)

### Removed
- TBD (removed a feature)

### Deprecated
- TBD (soon-to-be removed feature)

### Security
- TBD (addressing vulnerability)

## [1.2.0] (Athena) - 2019-04-10
### Added
- Support for dormant flags in hijacks
- Storing hijack update (origin, neighbor) combinations in redis
- Translate learn rule request in ARTEMIS-compatible dicts in backend
Expand Down Expand Up @@ -42,9 +61,6 @@
- Configured prefix graph visualization (needs redesign)
- Config data field from configs DB table

### Deprecated
- TBD (soon-to-be removed feature)

### Security
- Using yaml dump and safe_load instead of pickling/unpickling

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ to their homepages and licenses.

## Acknowledgements and Funding Sources
This work is supported by the following funding sources on the European side (FORTH):
* **European Research Council (ERC) grant agreement no. 790575 ([PHILOS Project](https://cordis.europa.eu/project/rcn/215015/en))**
* **European Research Council (ERC) grant agreement no. 338402 ([NetVolution Project](http://netvolution.eu/))**
* **[RIPE NCC Community Projects Fund](https://www.ripe.net/publications/news/announcements/ripe-community-projects-fund-2017-recipients-announced)**

Expand Down
4 changes: 2 additions & 2 deletions artemis-chart/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data:
apiPort: {{ .Values.apiPort | default "3000" | quote }}
dbHost: {{ .Values.dbHost | default "postgres" | quote }}
dbPort: {{ .Values.dbPort | default "5432" | quote }}
dbVersion: {{ .Values.dbVersion | default "12" | quote }}
dbVersion: {{ .Values.dbVersion | default "15" | quote }}
dbName: {{ .Values.dbName | default "artemis_db" | quote }}
dbUser: {{ .Values.dbUser | default "artemis_user" | quote }}
dbSchema: {{ .Values.dbSchema | default "public" | quote }}
Expand All @@ -29,7 +29,7 @@ data:
webappPort: {{ .Values.webappPort | default "8000" | quote }}
adminUser: {{ .Values.adminUser | default "admin" | quote }}
adminEmail: {{ .Values.adminEmail | default "admin@admin.com" | quote }}
jsVersion: {{ .Values.jsVersion | default "0.1.2" | quote }}
jsVersion: {{ .Values.jsVersion | default "1.0.0" | quote }}
rabbitmqHost: {{ .Values.rabbimtqHost | default "rabbitmq" | quote }}
rabbitmqPort: {{ .Values.rabbimtqPort | default "5672" | quote }}
rabbitmqUser: {{ .Values.rabbitmqUser | default "guest" | quote }}
Expand Down
2 changes: 1 addition & 1 deletion artemis-chart/templates/graphql-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
secretKeyRef:
name: {{ .Release.Name }}-secret
key: hasuraJwt
image: hasura/graphql-engine:v1.0.0-alpha31
image: hasura/graphql-engine:v1.0.0-alpha42
name: graphql
resources: {}
restartPolicy: Always
Expand Down
4 changes: 2 additions & 2 deletions artemis-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apiPort: 3000
# database
dbHost: postgres
dbPort: 5432
dbVersion: 12
dbVersion: 15
dbName: artemis_db
dbUser: artemis_user
dbPass: Art3m1s
Expand All @@ -30,7 +30,7 @@ webappPort: 8000
adminUser: admin
adminPass: admin123
adminEmail: admin@admin
jsVersion: 0.1.2
jsVersion: 1.0.0
# rabbitmq
rabbitmqHost: rabbitmq
rabbitmqPort: 5672
Expand Down

0 comments on commit 28d4bcd

Please sign in to comment.