-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tedi/tasklogs
- Loading branch information
Showing
7 changed files
with
53 additions
and
8 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
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,15 @@ | ||
# Maintainers | ||
|
||
This document lists the individuals who are responsible for maintaining and contributing to the development of this project. | ||
|
||
## Core Maintainers | ||
|
||
- [Gyanendra Mishra](https://github.com/h4ck3rk3y) - Software Engineer @KurtosisTech | ||
- [Tedi Mitiku](https://github.com/tedim52) - Software Engineer @KurtosisTech | ||
- [Dan Park](https://github.com/chunha-park) - BD/Product Marketing @KurtosisTech | ||
- [Barnabas Busa](https://github.com/barnabasbusa) - Dev Ops @Ethereum Foundation | ||
- [Parithosh Jayanthi](https://github.com/parithosh) - Dev Ops @Ethereum Foundation | ||
- [John Hilliard](https://github.com/praetoriansentry) - Dev Tools @Polygon Labs | ||
- [Léo Vincent](https://github.com/leovct) - Dev Tools @Polygon Labs | ||
|
||
For any inquiries or questions regarding the project, please contact one of the core maintainers listed above. |
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
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,25 @@ | ||
--- | ||
title: Running Kurtosis in your own Cloud | ||
sidebar_label: Running in your own Cloud | ||
slug: /self-hosting | ||
sidebar_position: 14 | ||
--- | ||
|
||
This guide will help you set up Kurtosis in your own cloud and exposing it using one of your subdomains e.g. `kurtosis.<your domain>.com` | ||
|
||
I. Prerequisites | ||
----------------- | ||
|
||
1. Public facing gateway (e.g. AWS ALB) supporting the Kurtosis subdomain with certificate. The certificate should support the subdomain name and a wildcard subdomain prefix `*.<subdomain>` since the service port URLs format is `port-service-enclave.<subdomain>`. The gateway should terminate TLS. | ||
2. Host running Ubuntu to install and configure Kurtosis on. The host should be on a private subnet receiving traffic from the Gateway on port 80. Healthchecks should use the `/status` URL. | ||
|
||
![self-hosting-overview](/img/guides/self-hosting-overview.png) | ||
|
||
II. Kurtosis Installation | ||
----------------- | ||
|
||
We provide an install script setting up Docker, Nginx and Kurtosis. The script takes as arguments your subdomain name, a username and password for HTTP basic authentication. | ||
|
||
```bash | ||
curl -s https://raw.githubusercontent.com/kurtosis-tech/kurtosis-cloud-config/main/self-hosting-setup.sh | bash -s <subdomain name> <username> <password> | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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