Monero Node

Contents

Abstract

Usage guide for a Monero Node.

Monero Node#

Install Node#

helm upgrade --install monero oci://tccr.io/truecharts/monero-node -f values.yaml

Values#

image

Image Values


Describe the image to use for the node.

image:
  pullPolicy: IfNotPresent
  repository: ghcr.io/sethforprivacy/simple-monerod
  tag: v0.18.3.4@sha256:435a80a7f7cc0a12d05038492e879aa45d6e7eb791ef1327ebff21c205491398
monero

Monero Node Configuration Values


Configure the monero node that will run on the cluster.

monero:
  enablednsblocklist: true
  noigd: true
  pruneblockchain: true
  publicnode: true
  rpcbindip: 0.0.0.0
  rpcbindport: "18089"
persistence

Image Values


Describe the image to use for the node.

persistence:
  blockchainstorage:
    enabled: true
    mountPath: /mnt/monero
portal

Portal Values


Portal configuration values.

portal:
  open:
    enabled: true
securityContext

Security Context Values


Security context for the deployment’s pod.

securityContext:
  container:
    readOnlyRootFilesystem: false
    runAsGroup: 0
    runAsUser: 0
service

Service Values


Services for main and rpc ports.

service:
  main:
    ports:
      main:
        port: 18080
        protocol: tcp
        targetPort: 18080
  rpc:
    enabled: true
    ports:
      rpc:
        enabled: true
        port: 18089
        protocol: tcp
        targetPort: 18089