Skip to content

Commit bd5f2e3

Browse files
authored
Docs: DOC-3535 - Standardize on-premises registry login and support references (#4218)
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 `<registry-username>` 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.
1 parent 2fce2ee commit bd5f2e3

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

modules/ROOT/pages/tinymceai-on-premises-getting-started.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,18 @@ For Docker:
4848

4949
[source,bash]
5050
----
51-
docker login -u tiny https://registry.containers.tiny.cloud
52-
# Docker prompts for the password; this avoids leaking it in shell history.
51+
docker login -u tiny -p [access-token] registry.containers.tiny.cloud
5352
----
5453

5554
For Podman:
5655

5756
[source,bash]
5857
----
59-
podman login -u tiny registry.containers.tiny.cloud
58+
podman login -u tiny -p [access-token] registry.containers.tiny.cloud
6059
----
6160

62-
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`.
61+
[NOTE]
62+
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}].
6363

6464
=== Pull the AI service image
6565

modules/ROOT/pages/tinymceai-on-premises-production.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The AI service works with Podman as an alternative to Docker. In Podman, contain
105105

106106
[source,bash]
107107
----
108-
podman login -u '<registry-username>' registry.containers.tiny.cloud
108+
podman login -u tiny -p [access-token] registry.containers.tiny.cloud
109109
110110
podman pull registry.containers.tiny.cloud/ai-service-tiny:latest
111111
@@ -147,7 +147,7 @@ kubectl create namespace tinymce-ai
147147
kubectl create secret docker-registry tiny-registry \
148148
--namespace tinymce-ai \
149149
--docker-server=registry.containers.tiny.cloud \
150-
--docker-username=<registry-username> \
150+
--docker-username=tiny \
151151
--docker-password='<registry-access-token>'
152152
----
153153

modules/ROOT/pages/tinymceai-on-premises-troubleshooting.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:keywords: AI, on-premises, troubleshooting, errors, debugging, diagnostics, JWT, container, LLM
66
:pluginname: TinyMCE AI
77

8-
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.
8+
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.
99

1010
== Quick triage
1111

@@ -19,7 +19,7 @@ Work through this list to identify the symptom area:
1919
. *Slow, timing out, or failing under load?* See <<performance>>.
2020
. *Scaling, upgrades, or deployment questions?* See xref:tinymceai-on-premises-production.adoc[Production deployment].
2121

22-
If none of the above match, see <<diagnostic-recipes>> and then escalate to `support@tiny.cloud`.
22+
If none of the above match, see <<diagnostic-recipes>> and then escalate to link:{supporturl}/[{supportname}].
2323

2424

2525
[[container-startup-failures]]

0 commit comments

Comments
 (0)