|
| 1 | +# Default values for eclair. |
| 2 | +# This is a YAML-formatted file. |
| 3 | +# Declare variables to be passed into your templates. |
| 4 | +namespace: warnet |
| 5 | + |
| 6 | +# This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/ |
| 7 | +image: |
| 8 | + repository: acinq/eclair |
| 9 | + # This sets the pull policy for images. |
| 10 | + pullPolicy: IfNotPresent |
| 11 | + # Overrides the image tag whose default is the chart appVersion. |
| 12 | + tag: "release-0.8.0" |
| 13 | + |
| 14 | +# This is for the secretes for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ |
| 15 | +imagePullSecrets: [] |
| 16 | +nameOverride: "" |
| 17 | +fullnameOverride: "" |
| 18 | + |
| 19 | +# This is for setting Kubernetes Labels to a Pod. |
| 20 | +# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ |
| 21 | +podLabels: |
| 22 | + app: "warnet" |
| 23 | + mission: "lightning" |
| 24 | + |
| 25 | +podSecurityContext: {} |
| 26 | + # fsGroup: 2000 |
| 27 | + |
| 28 | +securityContext: {} |
| 29 | + # capabilities: |
| 30 | + # drop: |
| 31 | + # - ALL |
| 32 | + # readOnlyRootFilesystem: true |
| 33 | + # runAsNonRoot: true |
| 34 | + # runAsUser: 1000 |
| 35 | + |
| 36 | +# This is for setting up a service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/ |
| 37 | +service: |
| 38 | + # This sets the service type more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types |
| 39 | + type: ClusterIP |
| 40 | + # This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports |
| 41 | +ServerPort: 9735 |
| 42 | +APIPort: 8080 |
| 43 | + |
| 44 | +# This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/ |
| 45 | +ingress: |
| 46 | + enabled: false |
| 47 | + className: "" |
| 48 | + annotations: {} |
| 49 | + # kubernetes.io/ingress.class: nginx |
| 50 | + # kubernetes.io/tls-acme: "true" |
| 51 | + hosts: |
| 52 | + - host: chart-example.local |
| 53 | + paths: |
| 54 | + - path: / |
| 55 | + pathType: ImplementationSpecific |
| 56 | + tls: [] |
| 57 | + # - secretName: chart-example-tls |
| 58 | + # hosts: |
| 59 | + # - chart-example.local |
| 60 | + |
| 61 | +resources: {} |
| 62 | + # We usually recommend not to specify default resources and to leave this as a conscious |
| 63 | + # choice for the user. This also increases chances charts run on environments with little |
| 64 | + # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 65 | + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 66 | + # limits: |
| 67 | + # cpu: 100m |
| 68 | + # memory: 128Mi |
| 69 | + # requests: |
| 70 | + # cpu: 100m |
| 71 | + # memory: 128Mi |
| 72 | + |
| 73 | +# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ |
| 74 | +livenessProbe: |
| 75 | + httpGet: |
| 76 | + path: /getinfo |
| 77 | + port: 8080 |
| 78 | + failureThreshold: 3 |
| 79 | + initialDelaySeconds: 10 |
| 80 | + periodSeconds: 20 |
| 81 | + timeoutSeconds: 5 |
| 82 | +readinessProbe: |
| 83 | + initialDelaySeconds: 10 |
| 84 | + failureThreshold: 3 |
| 85 | + periodSeconds: 10 |
| 86 | + tcpSocket: |
| 87 | + port: 8080 |
| 88 | +startupProbe: |
| 89 | + initialDelaySeconds: 15 |
| 90 | + periodSeconds: 10 |
| 91 | + failureThreshold: 5 |
| 92 | + timeoutSeconds: 30 |
| 93 | + exec: |
| 94 | + command: |
| 95 | + - sh |
| 96 | + - -c |
| 97 | + - 'curl -s http://localhost:8080/getinfo | grep -q "blockHeight"' |
| 98 | + |
| 99 | +# Additional volumes on the output Deployment definition. |
| 100 | +volumes: [] |
| 101 | +# - name: foo |
| 102 | +# secret: |
| 103 | +# secretName: mysecret |
| 104 | +# optional: false |
| 105 | + |
| 106 | +# Additional volumeMounts on the output Deployment definition. |
| 107 | +volumeMounts: [] |
| 108 | +# - name: foo |
| 109 | +# mountPath: "/etc/foo" |
| 110 | +# readOnly: true |
| 111 | + |
| 112 | +nodeSelector: {} |
| 113 | + |
| 114 | +tolerations: [] |
| 115 | + |
| 116 | +affinity: {} |
| 117 | + |
| 118 | +baseConfig: | |
| 119 | + # server port |
| 120 | + eclair.server.port=9737 |
| 121 | + # node's label |
| 122 | + eclair.node-alias="eclair-node" |
| 123 | + # rgb node's color |
| 124 | + eclair.node-color=49daaa |
| 125 | + eclair.api.enabled=true |
| 126 | + # Make sure this port isn't accessible from the internet! |
| 127 | + eclair.api.port=8080 |
| 128 | + #eclair.api.password is set in configmap.yaml |
| 129 | +
|
| 130 | +config: "" |
| 131 | + |
| 132 | +defaultConfig: "" |
| 133 | + |
| 134 | +channels: [] |
0 commit comments