-
Notifications
You must be signed in to change notification settings - Fork 0
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
Improvements for dshackle
chart
#1
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ icon: https://avatars.githubusercontent.com/u/49622339?s=200&v=4 | |
sources: | ||
- https://github.com/emeraldpay/dshackle | ||
type: application | ||
version: 0.1.7 | ||
version: 0.1.8 | ||
maintainers: | ||
- name: skylenet | ||
email: [email protected] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,13 @@ metadata: | |
name: {{ include "dshackle.fullname" . }} | ||
labels: | ||
{{- include "dshackle.labels" . | nindent 4 }} | ||
annotations: | ||
{{ toYaml .Values.service.annotations | nindent 4 }} | ||
spec: | ||
type: {{ .Values.service.type }} | ||
ports: | ||
- port: {{ .Values.httpPort }} | ||
targetPort: http | ||
- port: {{ .Values.externalHttpPort }} | ||
targetPort: {{ .Values.internalHttpPort }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @cristidas I think if we plan to open PR to back-merge it we should make as less changes as possible. I would suggest to introduce There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @OleksandrUA it wouldn't be all these changes in a PR, and I've already opened one only for the changes related to |
||
protocol: TCP | ||
name: http | ||
- port: {{ .Values.gRPCPort }} | ||
|
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.
HTTPS?
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.
We could also change to HTTPS, but throughout this chart
http
is used to label that specific trafficThere 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.
http
here represents internal port which is not HTTPS, internally they communicate over HTTP on port 8545