Skip to content
Merged

Dev #16

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
7ded4a1
added cli submodule
Naexon Mar 10, 2023
2c8581d
Merge pull request #1 from AustrianDataLAB/feature/cli-submodule
Naexon Mar 10, 2023
551b840
use dev branch of execDAT-CLI
toms-place Mar 16, 2023
708cee2
Merge pull request #2 from AustrianDataLAB:issue/move-submodules-branch
toms-place Mar 16, 2023
ce0acc6
use main branch for checkout of cli in main
toms-place Mar 16, 2023
d5a6432
Merge pull request #3 from AustrianDataLAB:issue/inital-setup
toms-place Mar 16, 2023
41983f4
add index and valueproposition
toms-place Mar 16, 2023
eff6fa7
Merge pull request #4 from AustrianDataLAB:issue/valueproposition
toms-place Mar 16, 2023
514bcf7
Template for the ADRs
Naexon Mar 16, 2023
0ba0a9b
add operator as submodule
toms-place Mar 16, 2023
6c5895b
add architecture and local k3d setup
toms-place Mar 16, 2023
1cfb11e
Merge pull request #5 from AustrianDataLAB:issue/operator
toms-place Mar 16, 2023
e13307a
Template for the ADRs (#6)
Naexon Mar 16, 2023
1c75569
Merge remote-tracking branch 'origin/dev' into feature/ADRs
Naexon Mar 16, 2023
52e8a32
public vs private ADR
Mar 16, 2023
af29327
Merge pull request #9 from AustrianDataLAB:feature/ADRs
Sokadyn Mar 16, 2023
190d664
testing for gpg signing
Naexon Mar 21, 2023
40b93d7
accepted public-vs-private-data ADR
Naexon Mar 23, 2023
edc039c
proposed branch-naming ADR
Naexon Mar 23, 2023
707f428
fix: use the port of the devel (#7)
toms-place Mar 23, 2023
215aff6
Start CICD ADR
Mar 23, 2023
01afee7
test signed commit
Mar 23, 2023
d76f550
Fix commit sign
Sokadyn Mar 23, 2023
9f465ad
Finish CICD ADR
Sokadyn Mar 23, 2023
969b92b
Some small changes to cicd ADR
Sokadyn Mar 25, 2023
d749bd2
Merge pull request #11 from AustrianDataLAB:feature/ADRs
Sokadyn Mar 25, 2023
861a225
Start lecture 9 readme
Sokadyn Apr 23, 2023
b18bf08
finish lecture 9
Sokadyn Apr 23, 2023
8e1ce9c
Merge pull request #12 from AustrianDataLAB/lecture/9
Sokadyn Apr 23, 2023
70db103
add architecture overview (#14)
toms-place Jun 1, 2023
1c16537
Feature/readme (#15)
Sokadyn Jun 1, 2023
ac59f1d
Dev (#13) (#17)
Sokadyn Jun 1, 2023
2d68a51
Merge remote-tracking branch 'origin/main' into feature/fix-dev
toms-place Jun 2, 2023
a860b61
Merge pull request #18 from AustrianDataLAB/feature/fix-dev
toms-place Jun 2, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# MacOS
.DS_Store

# editor
.vscode
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

execDAT - remote code execution for research

## TL;DR

We enable researchers to run their source code on remote execution environments through a single interface.

Normally this would require a researcher to complete the following steps:
- build a container image with their source code
- push the image to a registry
- push the data to somewhere the cluster has access to
- create k8s manifests to deploy everything in a cluster
- publish the results somewhere to access afterwards

With our application, these steps are simplified to writing a single standardized development environment configuration file and applying it using our provided CLI tool.

## Architecture
![Architecture](docs/images/architecture_overview.png)

## Getting Started

### Prerequisites
Expand Down
Binary file added docs/images/architecture_overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion execDAT-CLI