You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/block-node-server/README.md
+33-9Lines changed: 33 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,47 +1,57 @@
1
1
# Helm Chart
2
+
2
3
Installs the Hedera Block Node on a Kubernetes cluster.
3
4
4
5
## Prerequisites
6
+
5
7
- Helm 3+
6
8
- Kubernetes 1.29+
7
9
8
10
For Development and Test environment is recommended to use minikube with the following command (if want to deploy the kube-prometheus-stack for metrics visualization):
Set environment variables that will be used for the remainder of the document:
14
-
Replacing the values with the appropriate values for your environment: bn1 is short for block-node-1, but you can name you release as you wish. And use the version that you want to install.
17
+
Replacing the values with the appropriate values for your environment: bn-release is short for block-node-release, but you can name you release as you wish. And use the version that you want to install.
18
+
15
19
```bash
16
-
export RELEASE="blkNod"
17
-
export VERSION="0.3.0-SNAPSHOT"
20
+
export RELEASE="bn-release"
21
+
export VERSION="0.4.0-SNAPSHOT"
18
22
```
19
23
20
24
## Template
25
+
21
26
To generate the K8 manifest files without installing the chart, you need to clone this repo and navigate to `/charts` folder.
27
+
22
28
```bash
23
-
helm template --name-template my-bn hedera-block-node/ --dry-run --output-dir out
29
+
helm template --name-template bn-release block-node-server/ --dry-run --output-dir out
0 commit comments