-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Kubernetes deployment - Incident detector - Saving incidents request sets into cloud storage using s3 interface - Streaming challenges directly to ElasticSearch
- Loading branch information
Showing
225 changed files
with
90,113 additions
and
1,365 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,12 @@ | ||
notebooks | ||
container | ||
docs | ||
ip_cache | ||
src/baskerville/logs | ||
data/airflow | ||
data/feature_overview | ||
data/img | ||
data/scripts | ||
data/templates | ||
ip_cache | ||
alembic |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,3 +127,5 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
ip_cache/ |
Large diffs are not rendered by default.
Oops, something went wrong.
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,22 @@ | ||
# Copyright (c) 2020, eQualit.ie inc. | ||
# All rights reserved. | ||
# | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
FROM equalitie/baskerville:worker | ||
|
||
WORKDIR /usr/local | ||
RUN apt install wget | ||
RUN wget https://builds.openlogic.com/downloadJDK/openlogic-openjdk/8u262-b10/openlogic-openjdk-8u262-b10-linux-x64.tar.gz | ||
RUN mkdir jdk262 | ||
RUN tar -zxvf openlogic-openjdk-8u262-b10-linux-x64.tar.gz -C jdk262 | ||
RUN rm -r $JAVA_HOME/* | ||
RUN mv jdk262/openlogic-openjdk-8u262-b10-linux-64/* $JAVA_HOME/ | ||
|
||
COPY ./src /usr/local/baskerville/src | ||
COPY ./data/jars /usr/local/baskerville/data/jars | ||
COPY ./requirements.txt /usr/local/baskerville | ||
|
||
WORKDIR /usr/local/baskerville | ||
RUN pip3 install -e . |
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,4 @@ | ||
FROM equalitie/baskerville:notebook | ||
|
||
COPY ./src /usr/local/baskerville/src | ||
COPY ./data/jars /usr/local/baskerville/data/jars |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
alembic/versions/88eb5854154f_add_id_group_in_request_sets.py
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,23 @@ | ||
"""add uuid_request_set in request_sets | ||
Revision ID: 88eb5854154f | ||
Revises: | ||
Create Date: 2020-07-07 11:02:39.321300 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '88eb5854154f' | ||
down_revision = None | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
op.add_column('request_sets', sa.Column('uuid_request_set', sa.TEXT)) | ||
|
||
|
||
def downgrade(): | ||
op.op.drop_column('request_sets', 'uuid_request_set') |
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
Oops, something went wrong.