Skip to content

Commit

Permalink
hardcode specific docker version in mondaynet
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasochem committed Apr 16, 2021
1 parent 9cd51e7 commit 38240b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mondaynet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ node_config_network:
protocol: PtYuensgYBb3G3x1hLLbCmcav8ue8Kyd2khADcL5LsT5R1hcXex
timestamp: "2021-04-16T20:00:00Z"
images:
tezos: tezos/tezos:master
tezos: tezos/tezos:master_5c716376_20210416172936
is_invitation: false
nodes:
baking:
Expand Down
3 changes: 2 additions & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
print(json.dumps(network_config), file=out_file)
teztnets[network_name] = { "chain_name": node_config_network["chain_name"],
"network_url": f"https://tqtezos.github.io/teztnets/{network_name}",
"command": network_values["protocol"]["command"] }
"command": network_values["protocol"]["command"],
"docker_build": network_values["images"]["tezos"] }

index = jinja2.Template(open('src/release_notes.md.jinja2').read()).render(teztnets=teztnets)
with open("target/release/index.md", "w") as out_file:
Expand Down
3 changes: 1 addition & 2 deletions src/release_notes.md.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ tezos-node run
| | |
|-------|---------------------|
| Baker | `tezos-baker-{{ v["command"] }}` |
| Tezos commit hash | ? (TODO) |
| Tezos docker build | ? (TODO) |
| Tezos docker build | [{{ v["docker_build"] }}](https://hub.docker.com/r/tezos/tezos/tags?page=1&ordering=last_updated&name={{ v["docker_build"] }}) |
{% endfor %}

Faucet for all teztnets is at [https://faucet.tzalpha.net/](https://faucet.tzalpha.net/)

0 comments on commit 38240b9

Please sign in to comment.