Skip to content

Commit

Permalink
more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyCharlesBlake authored and teghnet committed Oct 2, 2024
1 parent 23adb9b commit 15f79c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
4 changes: 2 additions & 2 deletions charts/validator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ A Helm chart for deploying Chronicle Validator on Kubernetes
| ghost.libp2pValidateQueueSize | string | `"4096"` | libp2p validate queue size |
| ghost.liveness | object | `{"enabled":true,"livenessProbe":{"httpGet":{"path":"/healthcheck","port":9100},"initialDelaySeconds":30,"periodSeconds":60}}` | Liveness probe : restart the validator if the healthcheck endpoint is not reachable |
| ghost.logFormat | string | `"text"` | Log format for the validator, can be one of `json`, `text` |
| ghost.logLevel | string | `"info"` | Log level for the validator, can be one of `debug`, `info`, `trace`, `error` |
| ghost.logLevel | string | `"info"` | Log level for the validator, can be one of `debug`, `info`, `warning`, `error` |
| ghost.mntRpcUrl | string | `nil` | RPC url for MNT |
| ghost.nodeSelector | object | `{}` | Node selector for the validator |
| ghost.optRpcUrl | string | `nil` | RPC url for OETH (optimism) |
Expand Down Expand Up @@ -79,4 +79,4 @@ A Helm chart for deploying Chronicle Validator on Kubernetes
| tor-proxy.enabled | bool | `true` | values for tor-proxy, installs [tor-controller](/crds/tor-controller.yaml) and creates an [onionService CRD](/templates/onion-service.yaml) |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
7 changes: 1 addition & 6 deletions charts/validator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,18 @@ spec:
- name: ghost
securityContext:
{{- toYaml .Values.ghost.securityContext | nindent 12 }}
{{- if .Values.ghost.hostNetwork }}
hostNetwork: true
{{- end }}
image: "{{ .Values.ghost.image.repository }}:{{ .Values.ghost.image.tag | default .Chart.AppVersion }}"
{{- if .Values.ghost.commandOverride }}
command:
{{- range .Values.ghost.commandOverride }}
- {{ . | quote }}
{{- end }}
{{- end }}
args:
{{- if .Values.ghost.argsOverride }}
args:
{{- range .Values.ghost.argsOverride }}
- {{ . | quote }}
{{- end }}
{{- else }}
- "run"
{{- end }}
imagePullPolicy: {{ .Values.ghost.image.pullPolicy }}
ports:
Expand Down
4 changes: 1 addition & 3 deletions charts/validator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ghost:
# -- Overrides the image tag whose default is the chart appVersion.
tag: "0.42.2@sha256:66724907b479004e6a46a26175038c5cb88c88c2f47617df6e7fc3741e6d1876"

# -- Log level for the validator, can be one of `debug`, `info`, `trace`, `error`
# -- Log level for the validator, can be one of `debug`, `info`, `warning`, `error`
logLevel: info
# -- Log format for the validator, can be one of `json`, `text`
logFormat: text
Expand Down Expand Up @@ -64,8 +64,6 @@ ghost:
# - "run"
# - "-c"
# - "ipfs://Qm......."
# - "-v"
# - "debug"

# -- WEB API (tor-proxy)
webApi:
Expand Down

0 comments on commit 15f79c0

Please sign in to comment.