From 8c3698de753c518c970eaa7b027da87cbf8472d5 Mon Sep 17 00:00:00 2001 From: Jayadeep Jayaraman <53975210+jayadeep-jayaraman@users.noreply.github.com> Date: Thu, 14 Mar 2024 19:58:45 +0530 Subject: [PATCH] Update README.md (#1155) Added FAQ section for the debian 10 changes related to repository changed its orginal value error --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 2e3e1a755..9e143d414 100644 --- a/README.md +++ b/README.md @@ -143,3 +143,20 @@ Subscribe to [cloud-dataproc-discuss@google.com](https://groups.google.com/forum * See [LICENSE](LICENSE) +## FAQ +1. You might see an error message similar to the following when upgrading the agent, installing the agent, or running apt-get update on Debian/Ubuntu Linux: +``` +E: Repository 'https://packages.cloud.google.com/apt google-cloud-monitoring-buster-all InRelease' changed its 'Origin' value from 'google-cloud-monitoring-buster' to 'namespaces/cloud-ops-agents-artifacts/repositories/google-cloud-monitoring-buster-all' +E: Repository 'https://packages.cloud.google.com/apt google-cloud-monitoring-buster-all InRelease' changed its 'Label' value from 'google-cloud-monitoring-buster' to 'namespaces/cloud-ops-agents-artifacts/repositories/google-cloud-monitoring-buster-all' +``` +This message indicates that the package repository cache may have diverged from its source. To resolve this, run the following command: + +``` +apt-get --allow-releaseinfo-change update +``` + +Then, run the upgrade or install again. + + + +