-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Split setup in different folders per supported network * Add a workflow to create releases for the different networks based on the tag * Fix workflow * Small fixes
- Loading branch information
Showing
38 changed files
with
8,549 additions
and
25 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 |
---|---|---|
|
@@ -8,26 +8,33 @@ jobs: | |
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
tag_prefix: ['iota', 'shimmer', 'testnet'] | ||
steps: | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
if: startsWith(github.ref_name, matrix.tag_prefix) | ||
uses: actions/checkout@v4 | ||
|
||
- name: Find and Replace VERSION | ||
uses: jacobtomlinson/gha-find-replace@v2 | ||
if: startsWith(github.ref_name, matrix.tag_prefix) | ||
uses: jacobtomlinson/gha-find-replace@v3 | ||
with: | ||
find: "__VERSION__" | ||
replace: ${{ github.ref_name }} | ||
regex: false | ||
|
||
- name: Create node-docker-setup_stardust.tar.gz | ||
- name: Create node-docker-setup_${{ matrix.tag_prefix }}.tar.gz | ||
if: startsWith(github.ref_name, matrix.tag_prefix) | ||
uses: ihiroky/archive-action@v1 | ||
with: | ||
root_dir: stardust | ||
file_path: node-docker-setup_stardust.tar.gz | ||
root_dir: ${{ matrix.tag_prefix }} | ||
file_path: node-docker-setup_${{ matrix.tag_prefix }}.tar.gz | ||
|
||
- name: Upload node-docker-setup_stardust.tar.gz file | ||
uses: Shopify/[email protected] | ||
- name: Upload node-docker-setup_${{ matrix.tag_prefix }}.tar.gz file | ||
if: startsWith(github.ref_name, matrix.tag_prefix) | ||
uses: Shopify/[email protected] | ||
with: | ||
name: node-docker-setup_stardust-${{ github.ref_name }}.tar.gz | ||
path: node-docker-setup_stardust.tar.gz | ||
name: node-docker-setup_${{ github.ref_name }}.tar.gz | ||
path: node-docker-setup_${{ matrix.tag_prefix }}.tar.gz | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.DS_Store | ||
legacy/data | ||
chrysalis/data | ||
stardust/data | ||
iota/data | ||
shimmer/data | ||
testnet/data | ||
.env |
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 @@ | ||
# Node Docker Setup - IOTA Mainnet | ||
This setup lets you run an [IOTA Hornet node](https://wiki.iota.org/hornet/welcome) and additional services using Docker and Traefik as [a reverse proxy](https://en.wikipedia.org/wiki/Reverse_proxy) to enable (optional) TLS using [Let's Encrypt](https://letsencrypt.org/), control access to your node and route requests to the correct endpoints. | ||
|
||
See [this guide](https://wiki.iota.org/hornet/how_tos/using_docker) to set up your node. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Node Docker Setup - Stardust | ||
# Node Docker Setup - Shimmer | ||
This setup lets you run an [IOTA Hornet node](https://wiki.iota.org/hornet/welcome) and additional services using Docker and Traefik as [a reverse proxy](https://en.wikipedia.org/wiki/Reverse_proxy) to enable (optional) TLS using [Let's Encrypt](https://letsencrypt.org/), control access to your node and route requests to the correct endpoints. | ||
|
||
See [this guide](https://wiki.iota.org/hornet/how_tos/using_docker) to set up your node. |
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,11 @@ | ||
apiVersion: 1 | ||
|
||
providers: | ||
- name: 'Prometheus' | ||
orgId: 1 | ||
folder: '' | ||
type: file | ||
disableDeletion: true | ||
allowUiUpdates: false | ||
options: | ||
path: /etc/grafana/provisioning/dashboards |
Oops, something went wrong.