From dc32457395f14802da841fec39f1700eb99ee83d Mon Sep 17 00:00:00 2001 From: miller-da Date: Fri, 21 Aug 2026 17:53:19 -0500 Subject: [PATCH 1/2] remove jfrog references Signed-off-by: miller-da --- .../troubleshooting-guide/installation-issues.mdx | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/docs-main/global-synchronizer/troubleshooting-guide/installation-issues.mdx b/docs-main/global-synchronizer/troubleshooting-guide/installation-issues.mdx index 5262d3f20..3e0b0a77c 100644 --- a/docs-main/global-synchronizer/troubleshooting-guide/installation-issues.mdx +++ b/docs-main/global-synchronizer/troubleshooting-guide/installation-issues.mdx @@ -10,7 +10,6 @@ import CantonGlobalSynchronizerTroubleshootingGuideInstallationIssuesL56 from "/ import CantonGlobalSynchronizerTroubleshootingGuideInstallationIssuesL69 from "/snippets/canton-docs/global-synchronizer_troubleshooting-guide_installation-issues_L69.mdx"; import CantonGlobalSynchronizerTroubleshootingGuideInstallationIssuesL78 from "/snippets/canton-docs/global-synchronizer_troubleshooting-guide_installation-issues_L78.mdx"; import CantonGlobalSynchronizerTroubleshootingGuideInstallationIssuesL92 from "/snippets/canton-docs/global-synchronizer_troubleshooting-guide_installation-issues_L92.mdx"; -import CantonGlobalSynchronizerTroubleshootingGuideInstallationIssuesL102 from "/snippets/canton-docs/global-synchronizer_troubleshooting-guide_installation-issues_L102.mdx"; import CantonGlobalSynchronizerTroubleshootingGuideInstallationIssuesL118 from "/snippets/canton-docs/global-synchronizer_troubleshooting-guide_installation-issues_L118.mdx"; import CantonGlobalSynchronizerTroubleshootingGuideInstallationIssuesL135 from "/snippets/canton-docs/global-synchronizer_troubleshooting-guide_installation-issues_L135.mdx"; @@ -23,14 +22,13 @@ Installation failures typically fall into three categories: container runtime is If `docker compose up` fails with an image pull error: ``` -Error response from daemon: pull access denied for digitalasset/canton-participant +Error response from daemon: pull access denied... ``` Possible causes: -- You are not logged in to the container registry. Run `docker login digitalasset-docker.jfrog.io` with your JFrog credentials. -- Your JFrog account does not have access to the required repositories. Request access through [support.digitalasset.com](https://support.digitalasset.com). - A typo in the image tag. Verify the image name and version in your `docker-compose.yaml` or `.env` file against the release notes. +- Stale cached credentials from an old `docker login`. ### Resource Limits @@ -97,14 +95,6 @@ If the main container never starts, an init container may be failing: Init containers commonly fail due to database connectivity issues -- the PostgreSQL instance is unreachable or the credentials are wrong. -### Image Pull Secrets - -Kubernetes needs explicit credentials to pull from private registries: - - - - -Then reference `jfrog-creds` in your `validator-values.yaml` under `imagePullSecrets`. ## Network Issues From ff0b5596a3531a8924e14e628a70b6b50633d04f Mon Sep 17 00:00:00 2001 From: miller-da Date: Fri, 21 Aug 2026 18:50:24 -0500 Subject: [PATCH 2/2] remove deprecated snippet Signed-off-by: miller-da --- ...izer_troubleshooting-guide_installation-issues_L102.mdx | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 docs-main/snippets/canton-docs/global-synchronizer_troubleshooting-guide_installation-issues_L102.mdx diff --git a/docs-main/snippets/canton-docs/global-synchronizer_troubleshooting-guide_installation-issues_L102.mdx b/docs-main/snippets/canton-docs/global-synchronizer_troubleshooting-guide_installation-issues_L102.mdx deleted file mode 100644 index 51701f430..000000000 --- a/docs-main/snippets/canton-docs/global-synchronizer_troubleshooting-guide_installation-issues_L102.mdx +++ /dev/null @@ -1,7 +0,0 @@ -```bash -kubectl create secret docker-registry jfrog-creds \ - --docker-server=digitalasset-docker.jfrog.io \ - --docker-username=$JFROG_USER \ - --docker-password=$JFROG_TOKEN \ - -n validator -```