-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1638 from splunk/urbiz-OD5041-collector-update
[5041]: Collector uninstall docs
- Loading branch information
Showing
7 changed files
with
78 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
gdi/opentelemetry/collector-kubernetes/kubernetes-uninstall.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.. _otel-uninstall-integration: | ||
.. _otel-kubernetes-uninstall: | ||
|
||
******************************************** | ||
Uninstall the Collector for Kubernetes | ||
******************************************** | ||
|
||
.. meta:: | ||
:description: Describes how to uninstall the Splunk Distribution of OpenTelemetry Collector for Kubernetes. | ||
|
||
To uninstall the Collector for Kubernetes, run the ``helm uninstall`` command. | ||
|
||
Running this command: | ||
|
||
* Removes all Kubernetes components associated with the chart. | ||
* Deletes the release. | ||
* Removes the release history. | ||
|
||
For example, to uninstall ``my-splunk-otel-collector``, run: | ||
|
||
.. code-block:: bash | ||
helm uninstall my-splunk-otel-collector | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.. _otel-windows-uninstall: | ||
|
||
******************************************** | ||
Uninstall the Collector for Windows | ||
******************************************** | ||
|
||
.. meta:: | ||
:description: Describes how to uninstall the Splunk Distribution of OpenTelemetry Collector for Windows. | ||
|
||
Follow these instructions to uninstall the Splunk Distribution of the OpenTelemetry Collector for Windows. | ||
|
||
.. _otel-windows-uninstall-panel: | ||
|
||
Uninstall using the Windows Control Panel | ||
==================================================== | ||
|
||
If you installed the Collector with the installer script, the Collector and td-agent (Fluentd) can be uninstalled from **Programs and Features** in the Windows Control Panel. The configuration files might persist in ``\ProgramData\Splunk\OpenTelemetry Collector`` and ``\opt\td-agent`` after uninstall. | ||
|
||
.. _otel-windows-uninstall-powershell: | ||
|
||
Uninstall using PowerShell | ||
==================================================== | ||
|
||
You can also uninstall the Collector for Windows using PowerShell: | ||
|
||
.. code-block:: PowerShell | ||
$MyProgram = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\uninstall\* | Where { $_.DisplayName -eq "Splunk OpenTelemetry Collector" } | ||
cmd /c $MyProgram.UninstallString |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters