Skip to content

DOCS-2802: Add namespaced Online Boutique manifest#2591

Merged
ctauchen merged 1 commit intotigera:mainfrom
ctauchen:docs-2802-yaml
Mar 13, 2026
Merged

DOCS-2802: Add namespaced Online Boutique manifest#2591
ctauchen merged 1 commit intotigera:mainfrom
ctauchen:docs-2802-yaml

Conversation

@ctauchen
Copy link
Collaborator

Summary

  • Add static/files/online-boutique-namespaced.yaml — a namespaced version of Google's Online Boutique microservices demo
  • 12 services, each in its own namespace, with cross-namespace DNS and a built-in load generator
  • No doc changes — just the manifest file so it's available at https://docs.tigera.io/files/online-boutique-namespaced.yaml

Split out from #2590 to land the manifest independently.

Test plan

  • Deployed to a Kind cluster, all 12 services reach Running status
  • yarn build passes (no doc changes, no broken links)

🤖 Generated with Claude Code

Add a namespaced version of Google's Online Boutique microservices demo
for use in quickstart guides. Each of the 12 services is placed in its
own namespace for a richer Service Graph topology.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@ctauchen ctauchen requested a review from a team as a code owner March 13, 2026 15:42
Copilot AI review requested due to automatic review settings March 13, 2026 15:42
@netlify
Copy link

netlify bot commented Mar 13, 2026

Deploy Preview for calico-docs-preview-next ready!

Name Link
🔨 Latest commit c8d1496
🔍 Latest deploy log https://app.netlify.com/projects/calico-docs-preview-next/deploys/69b4307500628900082e0915
😎 Deploy Preview https://deploy-preview-2591--calico-docs-preview-next.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Mar 13, 2026

Deploy Preview succeeded!

Built without sensitive environment variables

Name Link
🔨 Latest commit c8d1496
🔍 Latest deploy log https://app.netlify.com/projects/tigera/deploys/69b43075d8b9d800084c3242
😎 Deploy Preview https://deploy-preview-2591--tigera.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 68 (no change from production)
Accessibility: 98 (no change from production)
Best Practices: 92 (🟢 up 9 from production)
SEO: 100 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

@ctauchen ctauchen merged commit 608455e into tigera:main Mar 13, 2026
11 of 13 checks passed
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a Kubernetes manifest to the docs site’s static assets so users can download/apply a namespaced version of Google’s Online Boutique demo (intended to create rich cross-namespace traffic for Service Graph visualizations).

Changes:

  • Add static/files/online-boutique-namespaced.yaml containing 12 microservices, each deployed into its own namespace.
  • Configure services to use cross-namespace DNS (<service>.<namespace>) and include a built-in load generator.

runAsUser: 1000
initContainers:
- name: frontend-check
image: busybox:latest
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Fixed — pinned to busybox:1.37.

runAsUser: 1000
containers:
- name: redis
image: redis:alpine
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Fixed — pinned to redis:7-alpine.

image: busybox:latest
command:
- /bin/sh
- -exc
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Fixed — changed -exc to -xc so the retry loop can proceed past transient wget failures.

for i in $(seq 1 $MAX_RETRIES); do
echo "Attempt $i: Pinging frontend: ${FRONTEND_ADDR}..."
STATUSCODE=$(wget --server-response http://${FRONTEND_ADDR} 2>&1 | awk '/^ HTTP/{print $2}')
if [ $STATUSCODE -eq 200 ]; then
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Fixed — switched to a quoted string comparison: [ "$STATUSCODE" = "200" ]. Handles empty/non-numeric values safely.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants