Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
craigem committed Oct 28, 2020
1 parent 259c9d6 commit 4b3fb1b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 25 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flake.nix
Expand Up @@ -3,8 +3,8 @@

inputs = {
bitte-cli.follows = "bitte/bitte-cli";
# bitte.url = "github:input-output-hk/bitte";
bitte.url = "path:/home/manveru/github/input-output-hk/bitte";
#bitte.url = "github:input-output-hk/bitte";
bitte.url = "path:/home/craige/source/IOHK/bitte";
nixpkgs.follows = "bitte/nixpkgs";
terranix.follows = "bitte/terranix";
utils.url = "github:numtide/flake-utils";
Expand Down
22 changes: 2 additions & 20 deletions jobs/vit.nix
Expand Up @@ -6,26 +6,6 @@ let
jormungandr-version = "0.10.0-alpha.1";
jobPrefix = "vit-testnet";

env = {
# Adds some extra commands to the store and path for debugging inside
# nomad jobs with `nomad alloc exec $ALLOC_ID /bin/sh`
PATH = lib.makeBinPath [
coreutils
curl
dnsutils
gawk
gnugrep
iproute
jq
lsof
netcat
nettools
procps
jormungandr
remarshal
];
};

vit-servicing-station-server-config = {
tls = {
cert_file = null;
Expand Down Expand Up @@ -68,6 +48,7 @@ let
peerAddresses = lib.concatStringsSep ''
,
'' (lib.forEach requiredPeers singlePeerAddress);

peers = lib.concatStringsSep ''
,
'' (lib.forEach requiredPeers singlePeer);
Expand Down Expand Up @@ -132,6 +113,7 @@ let
let
localRpcPort = (if public then 10000 else 7000) + index;
localRestPort = (if public then 11000 else 9000) + index;
localPrometheusPort = 10000 + index;
publicPort = 7100 + index;

name = if public then
Expand Down

0 comments on commit 4b3fb1b

Please sign in to comment.