Manage satellite
This topic outlines the steps to update and manage the versions of the Ingestion Satellite using Docker and Kubernetes.
Updating with Docker
Use the following command to pull the latest version of the Ingestion Satellite image from Docker Hub:
List all running containers and identify the ID of the current Ingestion Satellite container:
Replace `<ID>` with the actual ID of the current container and use the following commands to stop and remove it.
Start the Ingestion Satellite container with the latest version. Ensure to replace `
/local/path/to/satellite.yml
` with the local path to your configuration file(`satellite.yml`)
:
If you encounter issues with the docker pull
command, you can manually download the Ingestion Satellite image from Docker Hub and then install it following the steps mentioned above.
Updating with Kubernetes
To identify the name of the deployment for the Ingestion Satellite, use the following command:
Restart the deployment to update the Ingestion Satellite. Replace
<deployment-name>
with the actual name of the deployment. If you didn't customize the template, the deployment name is typicallylevelops-satellite:
For example, if your deployment name is levelops-satellite
, you can use:
Keeping the Ingestion Satellite up-to-date ensures that you benefit from the latest features, improvements, and security patches.
Last updated