mirror of
https://github.com/helm/charts.git
synced 2026-08-21 13:28:13 +00:00
* Upgraded appVersion from 0.15.1 to 0.17.1 because of CVE-2018-17144 Signed-off-by: Harsha Goli <harshagoli@gmail.com> * updated README to reflect new default version tag Signed-off-by: Harsha Goli <harshagoli@gmail.com> * Modified default tag in values.yaml Signed-off-by: Harsha Goli <harshagoli@gmail.com> * incremented version number from 0.1.6 to 0.1.7 Signed-off-by: Harsha Goli <harshagoli@gmail.com>
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
# Default values for bitcoind.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
terminationGracePeriodSeconds: 30
|
|
image:
|
|
repository: arilot/docker-bitcoind
|
|
tag: 0.17.1
|
|
pullPolicy: IfNotPresent
|
|
|
|
service:
|
|
rpcPort: 8332
|
|
p2pPort: 8333
|
|
testnetPort: 18332
|
|
testnetP2pPort: 18333
|
|
|
|
persistence:
|
|
enabled: true
|
|
## database data Persistent Volume Storage Class
|
|
## If defined, storageClassName: <storageClass>
|
|
## If set to "-", storageClassName: "", which disables dynamic provisioning
|
|
## If undefined (the default) or set to null, no storageClassName spec is
|
|
## set, choosing the default provisioner. (gp2 on AWS, standard on
|
|
## GKE, AWS & OpenStack)
|
|
##
|
|
# storageClass: "-"
|
|
accessMode: ReadWriteOnce
|
|
size: 300Gi
|
|
|
|
## Configure resource requests and limits
|
|
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
|
|
##
|
|
resources: {}
|
|
# requests:
|
|
# memory: 512Mi
|
|
# cpu: 300m
|
|
|
|
# Custom bitcoind configuration file used to override default bitcoind settings
|
|
configurationFile:
|
|
bitcoin.conf: |-
|
|
server=1
|
|
printtoconsole=1
|
|
rpcuser=rpcuser
|
|
rpcpassword=rpcpassword
|