The Nexterm Helm Chart provides Helm charts for deploying the Nexterm application on Kubernetes.
The current version of the Helm chart is .
This badge indicates the current build status of the Helm chart. For detailed information about builds, check Actions.
To install the Nexterm Helm Chart, you need Helm installed on your system. If Helm is not installed, please refer to the Helm documentation for instructions.
-
Add the chart repository to Helm:
helm repo add nexterm https://vuisme.github.io/nexterm-helmchart
-
Update the repository:
helm repo update
-
Install the Helm chart:
helm install my-nexterm nexterm/nexterm-helmchart
Replace
my-nexterm
with the name you want to give your release.
You can configure the values of the Helm chart by creating a custom values.yaml
file. Below is an example configuration:
replicaCount: 2
image:
repository: nexterm/nexterm-app
tag: latest
service:
type: ClusterIP
port: 80
After creating the values.yaml
file, you can install the chart with custom configuration using the command:
helm install my-nexterm nexterm/nexterm-helmchart -f values.yaml
To uninstall a Helm chart release, use the following command:
helm uninstall my-nexterm
If you encounter any issues or have questions, please open an issue on GitHub.
Happy deploying!