-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(packages): update Ogmios package with outputs and dependencies #172
Conversation
packages/ogmios/ogmios-v6.1.0.yaml
Outdated
value: 'http://localhost:1337/' | ||
- name: ogmios_health_url | ||
description: Ogmios helth URL | ||
value: 'http://localhost:1337/health' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the container port, but we'll want to provide the host port for the user. You should be able to get the port mapping with something like {{ .Ports.ogmios["1337"] }}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This gives me an issue with bad character "["
9cc5d0f
to
a2ba91e
Compare
a2ba91e
to
13e4677
Compare
packages/ogmios/ogmios-v6.1.0.yaml
Outdated
@@ -20,8 +22,15 @@ installSteps: | |||
binds: | |||
- '{{ .Paths.ContextDir }}/node-ipc:/ipc' | |||
ports: | |||
- "1337" | |||
- "1337:1337" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will statically map it to host port 1337
, which will cause conflicts if you install Ogmios more than once
13e4677
to
c1c3384
Compare
packages/ogmios/ogmios-v6.1.0.yaml
Outdated
description: Ogmios WebSocket & HTTP server URL | ||
value: 'http://localhost:{{ index (index .Ports "ogmios") "1337" }}' | ||
- name: health_url | ||
description: Ogmios helth URL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/helth/health/
Signed-off-by: Ales Verbic <verbotenj@blinklabs.io>
c1c3384
to
e74bca9
Compare
Closes #162 and #164
Test