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

Adds namespace to helm commands #1033

Merged
merged 1 commit into from
Oct 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions adoc/admin-logging-centralized.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -113,16 +113,16 @@ After this step, all of the log agents will initialize then start to forward log

- To check the installation progress, use the `helm status` command:
----
helm status <RELEASE_NAME>
helm status <RELEASE_NAME> --namespace kube-system
----

- To uninstall log agents, use the `helm delete` command:
----
helm delete --purge <RELEASE_NAME>
helm delete --purge <RELEASE_NAME> --namespace kube-system
----
Or if you have selected the Helm 3 alternative also see <<helm-tiller-install>>:
----
helm uninstall <RELEASE_NAME>
helm uninstall <RELEASE_NAME> --namespace kube-system
----

== Queuing
Expand Down