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
{{ message }}
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.
i have tried this helm chart on a Kubernetes cluster an notice that it is not properly working.
The first problem was that the Deployment kind of the chart was not supported anymore, you need to change it to ; "apps/v1" as it is in this git repo.
The second problem is that the Kubernetes service (with his port) overwrites the application port values. You will probably obtain an error with something containing "java.lang.NumberFormatException: For input string: tcp://xx.xx.xx.xx".
You solves this by just changing the service name in the manifest file; in the metadata, replace the name attribute with: name: "{{ template "gitbucket.fullname" . }}-service" .
In order to apply those changes you will need to fetch the helm repo locally and apply the changes manually before installing the helm chart.
I hope it helps someone else and thanks again for setting up this chart.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi everyone,
i have tried this helm chart on a Kubernetes cluster an notice that it is not properly working.
The first problem was that the Deployment kind of the chart was not supported anymore, you need to change it to ; "apps/v1" as it is in this git repo.
The second problem is that the Kubernetes service (with his port) overwrites the application port values. You will probably obtain an error with something containing "java.lang.NumberFormatException: For input string: tcp://xx.xx.xx.xx".
You solves this by just changing the service name in the manifest file; in the metadata, replace the name attribute with: name: "{{ template "gitbucket.fullname" . }}-service" .
In order to apply those changes you will need to fetch the helm repo locally and apply the changes manually before installing the helm chart.
I hope it helps someone else and thanks again for setting up this chart.
The text was updated successfully, but these errors were encountered: