Skip to content

Commit

Permalink
feat(packages): update Ogmios package with outputs and dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Ales Verbic <verbotenj@blinklabs.io>
  • Loading branch information
verbotenj committed Apr 1, 2024
1 parent 620c37c commit 9cc5d0f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/ogmios/ogmios-v6.1.0.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: ogmios
version: v6.1.0
description: Ogmios, a WebSocket & HTTP server for Cardano, providing a bridge between Cardano nodes and clients.
dependencies:
- cardano-node >= 8.7.3
installSteps:
- docker:
containerName: ogmios
Expand All @@ -20,8 +22,15 @@ installSteps:
binds:
- '{{ .Paths.ContextDir }}/node-ipc:/ipc'
ports:
- "1337"
- "1337:1337"
pullOnly: false
outputs:
- name: ogmios_url
description: Ogmios WebSocket & HTTP server URL
value: 'http://localhost:{{ index (index .Ports "ogmios") "1337" }}'
- name: ogmios_health_url
description: Ogmios helth URL
value: 'http://localhost:{{ index (index .Ports "ogmios") "1337" }}/health'
tags:
- docker
- linux
Expand Down
1 change: 1 addition & 0 deletions pkgmgr/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ func (p Package) install(cfg Config, context string, opts map[string]bool) (stri
cfg.DataDir,
pkgName,
)

cfg.Template = cfg.Template.WithVars(
map[string]any{
"Package": map[string]any{
Expand Down

0 comments on commit 9cc5d0f

Please sign in to comment.