Commit 2cd854a 1 parent e22fe1b commit 2cd854a Copy full SHA for 2cd854a
File tree 4 files changed +9
-2
lines changed
4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ type: application
22
22
# This is the chart version. This version number should be incremented each time you make changes
23
23
# to the chart and its templates, including the app version.
24
24
# Versions are expected to follow Semantic Versioning (https://semver.org/)
25
- version : 0.3.1
25
+ version : 0.3.2
26
26
27
27
# This is the version number of the application being deployed. This version number should be
28
28
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 1
1
# spectre
2
2
3
- ![ Version: 0.3.1 ] ( https://img.shields.io/badge/Version-0.3.1 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.42.2] ( https://img.shields.io/badge/AppVersion-0.42.2-informational?style=flat-square )
3
+ ![ Version: 0.3.2 ] ( https://img.shields.io/badge/Version-0.3.2 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.42.2] ( https://img.shields.io/badge/AppVersion-0.42.2-informational?style=flat-square )
4
4
5
5
A Helm chart for deploying Chronicle Spectre Relay on Kubernetes
6
6
@@ -65,6 +65,7 @@ A Helm chart for deploying Chronicle Spectre Relay on Kubernetes
65
65
| resources | object | ` {} ` | |
66
66
| rpcUrl | string | ` nil ` | rpcUrl for the target chain |
67
67
| securityContext | object | ` {} ` | |
68
+ | service.annotations | object | ` {} ` | |
68
69
| service.ports.listen.port | int | ` 8080 ` | |
69
70
| service.ports.listen.protocol | string | ` "TCP" ` | |
70
71
| service.type | string | ` "ClusterIP" ` | |
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ apiVersion: v1
2
2
kind : Service
3
3
metadata :
4
4
name : {{ include "spectre.fullname" . }}
5
+ annotations :
6
+ {{- with .Values.service.annotations }}
7
+ {{- toYaml . | nindent 4 }}
8
+ {{- end }}
5
9
labels :
6
10
{{- include "spectre.labels" . | nindent 4 }}
7
11
spec :
Original file line number Diff line number Diff line change @@ -119,6 +119,8 @@ service:
119
119
# rpc:
120
120
# port: 9100
121
121
# protocol: TCP
122
+ annotations :
123
+ {}
122
124
123
125
livenessProbe :
124
126
enabled : false
You can’t perform that action at this time.
0 commit comments