Skip to content

Commit

Permalink
Legal notice in source code
Browse files Browse the repository at this point in the history
  • Loading branch information
perdelt committed Aug 28, 2020
1 parent f5576c5 commit 12eb26e
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 10 deletions.
17 changes: 17 additions & 0 deletions bexhoma/experiments.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
"""
Class to run workflow given as Python Dict for bexhoma
Copyright (C) 2020 Patrick Erdelt
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from os import makedirs, path
import ast
from bexhoma import masterAWS, masterK8s
Expand Down
17 changes: 17 additions & 0 deletions bexhoma/masterAWS.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
"""
Class to managing experiments in an AWS cluster
Copyright (C) 2020 Patrick Erdelt
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import paramiko
import sys
import boto3
Expand Down
17 changes: 17 additions & 0 deletions bexhoma/masterK8s.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
"""
Class to managing experiments in a Kubernetes cluster
Copyright (C) 2020 Patrick Erdelt
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import time
import kubernetes.client
from kubernetes.client.rest import ApiException
Expand Down
18 changes: 13 additions & 5 deletions experiment-example-AWS.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
"""
:Date: 2018-09-10
:Version: 0.3.6
:Authors: Patrick Erdelt
Small demo for running experiments in an AWS cluster. This deals with some TPC-H tests for bexhoma.
Copyright (C) 2020 Patrick Erdelt
Small demo for running experiments in an k8s cluster
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This deals with the TPC-H tests.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from bexhoma import *
import logging
Expand Down
18 changes: 13 additions & 5 deletions experiment-example-k8s.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
"""
:Date: 2018-09-10
:Version: 0.3.6
:Authors: Patrick Erdelt
Small demo for running experiments in an k8s cluster. This deals with some TPC-H tests for bexhoma.
Copyright (C) 2020 Patrick Erdelt
Small demo for running experiments in an k8s cluster
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This deals with the TPC-H tests.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from bexhoma import *
import logging
Expand Down

0 comments on commit 12eb26e

Please sign in to comment.