From c1b8f6f9d42a4292a01c173834ac731d3c16aabe Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Tue, 16 Jun 2026 09:54:33 +1000 Subject: [PATCH] Docs: DOC-3535 - Standardize on-premises registry login and support references Align all on-premises container registry login examples with the published pattern used across the service pages (Export to PDF, Spelling, Hyperlinking, Image Proxy, Import/Export Word): - Replace the remaining `` placeholders with the username `tiny` on the AI on-premises production page (Podman login and the `kubectl create secret docker-registry` example). - Use `docker login -u tiny -p [access-token] registry.containers.tiny.cloud` (and the Podman equivalent) consistently on the AI on-premises getting started and production pages, and refer to the credential as an access token. - Replace the hardcoded `support@tiny.cloud` email on the AI on-premises getting started and troubleshooting pages with the standard `link:{supporturl}/[{supportname}]` reference. --- .../ROOT/pages/tinymceai-on-premises-getting-started.adoc | 8 ++++---- modules/ROOT/pages/tinymceai-on-premises-production.adoc | 4 ++-- .../ROOT/pages/tinymceai-on-premises-troubleshooting.adoc | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/ROOT/pages/tinymceai-on-premises-getting-started.adoc b/modules/ROOT/pages/tinymceai-on-premises-getting-started.adoc index 011e275bcd..b06de2382a 100644 --- a/modules/ROOT/pages/tinymceai-on-premises-getting-started.adoc +++ b/modules/ROOT/pages/tinymceai-on-premises-getting-started.adoc @@ -48,18 +48,18 @@ For Docker: [source,bash] ---- -docker login -u tiny https://registry.containers.tiny.cloud -# Docker prompts for the password; this avoids leaking it in shell history. +docker login -u tiny -p [access-token] registry.containers.tiny.cloud ---- For Podman: [source,bash] ---- -podman login -u tiny registry.containers.tiny.cloud +podman login -u tiny -p [access-token] registry.containers.tiny.cloud ---- -All accounts authenticate with the username `tiny`. When prompted, enter the access token supplied by the Tiny account representative. If credentials have not been received, contact `support@tiny.cloud`. +[NOTE] +All accounts authenticate with the username `tiny`. Replace `[access-token]` with the access token supplied by the Tiny account representative. If credentials have not been received, contact link:{supporturl}/[{supportname}]. === Pull the AI service image diff --git a/modules/ROOT/pages/tinymceai-on-premises-production.adoc b/modules/ROOT/pages/tinymceai-on-premises-production.adoc index f4f815bd2f..8ea9208d57 100644 --- a/modules/ROOT/pages/tinymceai-on-premises-production.adoc +++ b/modules/ROOT/pages/tinymceai-on-premises-production.adoc @@ -105,7 +105,7 @@ The AI service works with Podman as an alternative to Docker. In Podman, contain [source,bash] ---- -podman login -u '' registry.containers.tiny.cloud +podman login -u tiny -p [access-token] registry.containers.tiny.cloud podman pull registry.containers.tiny.cloud/ai-service-tiny:latest @@ -147,7 +147,7 @@ kubectl create namespace tinymce-ai kubectl create secret docker-registry tiny-registry \ --namespace tinymce-ai \ --docker-server=registry.containers.tiny.cloud \ - --docker-username= \ + --docker-username=tiny \ --docker-password='' ---- diff --git a/modules/ROOT/pages/tinymceai-on-premises-troubleshooting.adoc b/modules/ROOT/pages/tinymceai-on-premises-troubleshooting.adoc index 903fa6b65a..3ad08eddbd 100644 --- a/modules/ROOT/pages/tinymceai-on-premises-troubleshooting.adoc +++ b/modules/ROOT/pages/tinymceai-on-premises-troubleshooting.adoc @@ -5,7 +5,7 @@ :keywords: AI, on-premises, troubleshooting, errors, debugging, diagnostics, JWT, container, LLM :pluginname: TinyMCE AI -Match the symptom to the fix below. If the symptom does not fit any section, escalate to `support@tiny.cloud` with the output of `docker logs ai-service --tail 200` and a redacted copy of the `PROVIDERS` value. +Match the symptom to the fix below. If the symptom does not fit any section, escalate to link:{supporturl}/[{supportname}] with the output of `docker logs ai-service --tail 200` and a redacted copy of the `PROVIDERS` value. == Quick triage @@ -19,7 +19,7 @@ Work through this list to identify the symptom area: . *Slow, timing out, or failing under load?* See <>. . *Scaling, upgrades, or deployment questions?* See xref:tinymceai-on-premises-production.adoc[Production deployment]. -If none of the above match, see <> and then escalate to `support@tiny.cloud`. +If none of the above match, see <> and then escalate to link:{supporturl}/[{supportname}]. [[container-startup-failures]]