-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added annotations to services and statefulSets * Made service deployment configurable * Upgraded to latest version of the dscp-node * upgraded types package to latest version from dscp-node * Fixed some package dependency security issues * Bumped versions
- Loading branch information
1 parent
0e6b6ab
commit 332e703
Showing
7 changed files
with
125 additions
and
1,345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
dependencies: | ||
- name: dscp-node | ||
repository: https://digicatapult.github.io/dscp-node/ | ||
version: 3.0.1 | ||
digest: sha256:27b626344df7c86b8ce42a18d2e1afdb5fbbeb9db6aa4a7a6f64bc6cbd8b592f | ||
generated: "2022-04-07T13:21:43.837968+01:00" | ||
version: 3.8.0 | ||
digest: sha256:6525c15a6c7106f048b6592f6b2c871cf774d4305507ad91f22a07d56b468c39 | ||
generated: "2022-07-12T10:07:48.897446+01:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,39 @@ | ||
{{- if .Values.service.swarm.enabled }} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ include "dscp-ipfs.fullname" . }}-swarm | ||
{{- with .Values.service.swarm.annotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
labels: | ||
{{- include "dscp-ipfs.labels" . | nindent 4 }} | ||
spec: | ||
selector: | ||
name: {{ include "dscp-ipfs.fullname" . }} | ||
ports: | ||
- protocol: 'TCP' | ||
port: 4001 | ||
port: {{ .Values.service.swarm.port }} | ||
targetPort: {{ .Values.config.ipfsSwarmPort }} | ||
{{- end }} | ||
--- | ||
{{- if .Values.service.api.enabled }} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ include "dscp-ipfs.fullname" . }}-api | ||
{{- with .Values.service.api.annotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
labels: | ||
{{- include "dscp-ipfs.labels" . | nindent 4 }} | ||
spec: | ||
selector: | ||
name: {{ include "dscp-ipfs.fullname" . }} | ||
ports: | ||
- protocol: 'TCP' | ||
port: 5001 | ||
port: {{ .Values.service.api.port }} | ||
targetPort: {{ .Values.config.ipfsApiPort }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.