Skip to content
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

Fix/rollups node 1.3.0 errors #81

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/rollups-node/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
type: {{ .Values.validator.service.type }}
ports:
- port: 4000
targetPort: 4000
targetPort: 10000
protocol: TCP
name: graphql-server
- port: 5005
Expand Down
2 changes: 1 addition & 1 deletion charts/rollups-node/templates/tests/test-connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ spec:
- name: http-check
image: busybox
command: ['wget']
args: ['--spider', '--timeout=5', 'http://{{ include "validator.fullname" . }}-graphql-server:4000/graphql']
args: ['--spider', '--timeout=5', 'http://{{ include "validator.fullname" . }}-validator:4000/graphql']
restartPolicy: Never
Loading