Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wrong NOTES.txt in chart #101

Open
daroga0002 opened this issue Aug 25, 2021 · 0 comments
Open

wrong NOTES.txt in chart #101

daroga0002 opened this issue Aug 25, 2021 · 0 comments

Comments

@daroga0002
Copy link

daroga0002 commented Aug 25, 2021

Here you got chart NOTES.txt inivoked after chart installation to forward port 8081 to 80 in the pod:

1. Get the application URL by running these commands:
  export POD_NAME=$(kubectl get pods --namespace default -l "app.kubernetes.io/name=nexus-repository-manager,app.kubernetes.io/instance=nexus" -o jsonpath="{.items[0].metadata.name}")
  kubectl --namespace default port-forward $POD_NAME 8081:80
  Your application is available at http://127.0.0.1

but pod which is created by chart is listening on port 8081 (as here

)

This line

kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8081:80
should be replaced by:

  kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8081:{{ $.Values.nexus.nexusPort }}

and line

Your application is available at http://127.0.0.1
to:

  Your application is available at http://127.0.0.1:8081
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant