external-urls
Hypera infrastructure URLs and endpoints reference. Use when user asks about URLs, domains, ingress endpoints, cluster API servers, application URLs, Helm repositories, Git repositories, or needs to check connectivity to services. Provides quick lookup of all external URLs across all environments (hub, dev, prd) and clusters (cafehyna, loyalty, painelclientes, sonora).
What this skill does
# External URLs Skill Quick reference for all external URLs and endpoints in Hypera's multi-cluster GitOps infrastructure. ## Quick URL Lookup ### Application URLs by Environment **Hub (Shared Services)** | Service | URL | Purpose | |---------|-----|---------| | ArgoCD | `https://argocd.cafehyna.com.br` | GitOps UI & API | | Sentry | `https://sentry-hub.cafehyna.hypera.com.br` | Error tracking | | SonarQube | `https://sonarqube-hub.cafehyna.com.br` | Code quality | | phpMyAdmin | `https://dba.cafehyna.com.br` | MySQL admin | | Adminer | `https://dba2.cafehyna.com.br` | Multi-DB admin | | Mimir | `https://mimir-hub.cafehyna.com.br` | Metrics storage | **Development** | Service | URL | Purpose | |---------|-----|---------| | Sentry | `https://sentry.adocyl.com.br` | Error tracking | | SonarQube | `https://sonarqube.hypera.com.br` | Code quality | | Grafana OnCall | `https://oncall-dev.cafehyna.com` | On-call management | | phpMyAdmin | `https://dev-dba.cafehyna.com.br` | MySQL admin | | RabbitMQ | `https://rabbitmq-painelclientes-dev.cafehyna.com.br` | Message queue | **Production** | Service | URL | Purpose | |---------|-----|---------| | Sentry | `https://sentry.cafehyna.hypera.com.br` | Error tracking | ## Cluster API Endpoints All clusters use Azure Private Link (VPN required): | Cluster | API Server | Region | |---------|------------|--------| | cafehyna-hub | `https://aks-cafehyna-default-b2ie56p8.5bbf1042-d320-432c-bd11-cea99f009c29.privatelink.eastus.azmk8s.io:443` | East US | | cafehyna-dev | `https://aks-cafehyna-dev-hlg-q3oga63c.30041054-9b14-4852-9bd5-114d2fac4590.privatelink.eastus.azmk8s.io:443` | East US | | cafehyna-prd | `https://aks-cafehyna-prd-hsr83z2k.c7d864af-cbd7-481b-866b-8559e0d1c1ea.privatelink.eastus.azmk8s.io:443` | East US | | painelclientes-dev | `https://akspainelclientedev-dns-vjs3nd48.hcp.eastus2.azmk8s.io:443` | East US 2 | | painelclientes-prd | `https://akspainelclientesprd-dns-kezy4skd.hcp.eastus2.azmk8s.io:443` | East US 2 | | loyalty-dev | `https://loyaltyaks-qas-dns-d330cafe.hcp.eastus.azmk8s.io:443` | East US | ## Repository URLs ### Git Repositories (Azure DevOps) | Repository | URL | |------------|-----| | infra-team | `https://[email protected]/hypera/Cafehyna%20-%20Desenvolvimento%20Web/_git/infra-team` | | argo-cd-helm-values | `https://[email protected]/hypera/Cafehyna%20-%20Desenvolvimento%20Web/_git/argo-cd-helm-values` | | kubernetes-configuration | `https://[email protected]/hypera/Cafehyna%20-%20Desenvolvimento%20Web/_git/kubernetes-configuration` | ### Helm Repositories | Repository | URL | Charts | |------------|-----|--------| | ingress-nginx | `https://kubernetes.github.io/ingress-nginx` | ingress-nginx | | jetstack | `https://charts.jetstack.io` | cert-manager | | bitnami | `https://charts.bitnami.com/bitnami` | external-dns, phpmyadmin, rabbitmq | | prometheus-community | `https://prometheus-community.github.io/helm-charts` | kube-prometheus-stack | | robusta | `https://robusta-charts.storage.googleapis.com` | robusta | | cetic | `https://cetic.github.io/helm-charts` | adminer | | defectdojo | `https://raw.githubusercontent.com/DefectDojo/django-DefectDojo/helm-charts` | defectdojo | ## Domain Reference | Domain | Usage | Environment | |--------|-------|-------------| | `*.cafehyna.com.br` | Primary applications | All | | `*.cafehyna.hypera.com.br` | Hypera-branded services | Hub/Prd | | `*.adocyl.com.br` | Development services | Dev | | `*.hypera.com.br` | Corporate services | All | ## Certificate & DNS - **Certificate Issuer:** Let's Encrypt - **DNS Provider:** Cloudflare - **ClusterIssuers:** `letsencrypt-prod`, `letsencrypt-staging` - **Contact:** `[email protected]` ## SMTP Services | Service | Host | Environment | |---------|------|-------------| | Office 365 | `smtp.office365.com` | Hub | | SendGrid | `smtp.sendgrid.net` | Production | ## Quick Commands ### Check Application URL Health ```bash # Check ArgoCD curl -sI https://argocd.cafehyna.com.br | head -1 # Check all hub services for url in argocd.cafehyna.com.br sentry-hub.cafehyna.hypera.com.br sonarqube-hub.cafehyna.com.br dba.cafehyna.com.br; do echo -n "$url: "; curl -sI "https://$url" -o /dev/null -w "%{http_code}\n" --connect-timeout 5 2>/dev/null || echo "FAILED" done ``` ### Check Cluster Connectivity ```bash # Test cluster API (requires VPN) curl -sk https://aks-cafehyna-default-b2ie56p8.5bbf1042-d320-432c-bd11-cea99f009c29.privatelink.eastus.azmk8s.io:443/healthz # Using kubectl kubectl --kubeconfig ~/.kube/aks-rg-hypera-cafehyna-hub-config cluster-info ``` ### Check Helm Repository ```bash # Add and update helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx helm repo update ingress-nginx # Search charts helm search repo ingress-nginx ``` ## Configuration File Locations URLs are defined in these configuration files: | Category | Path Pattern | |----------|--------------| | Application Ingress | `argo-cd-helm-values/kube-addons/<service>/<cluster>/values.yaml` | | Cluster Endpoints | `infra-team/argocd-clusters/<cluster>.yaml` | | Git Repositories | `infra-team/argocd-repos/base/git-repositories/*.yaml` | | Helm Repositories | `infra-team/argocd-repos/base/helm-repositories/*.yaml` | ## Troubleshooting | Issue | Resolution | |-------|------------| | Application URL not reachable | Check ingress-nginx pods, verify DNS in Cloudflare | | Cluster API timeout | Verify VPN connection, check Azure AKS status | | Certificate error | Verify cert-manager ClusterIssuer, check Let's Encrypt rate limits | | DNS not resolving | Check external-dns logs, verify Cloudflare API token | ## Scripts - `scripts/check-urls.sh` - Health check all application URLs - `scripts/list-urls.sh` - List URLs by environment or category ## Detailed Reference For complete URL inventory with source file locations: - **[references/urls-detail.md](references/urls-detail.md)** - Complete URL reference - **[docs/external-urls-reference.md](../../../docs/external-urls-reference.md)** - Full documentation --- ## Gotchas - **Private Link API endpoints require VPN, not just kubeconfig:** All `privatelink.eastus.azmk8s.io` URLs resolve only inside the corporate network. `kubectl` will hang for 30s then time out — not produce a clear DNS error — when VPN is dropped. - **`cafehyna.com.br` and `cafehyna.hypera.com.br` are different zones:** Records added to the wrong zone propagate fine and resolve fine in browsers, but cert-manager DNS-01 challenges fail because the ACME validator queries the apex zone's NS records. Verify the zone with `dig NS <domain>` before adding records. - **`adocyl.com.br` is the dev-only domain — don't reuse for hub:** Cross-environment hostname reuse breaks Let's Encrypt staging vs prod issuer scoping, and SonarQube/Sentry session cookies leak across envs if they share the apex. - **Azure DevOps Git URLs need URL-encoded project names:** `Cafehyna%20-%20Desenvolvimento%20Web` must keep the encoding — raw spaces break `git clone` with a cryptic 404. The Azure DevOps UI hides this; copy from the SSH tab or use the encoded form. - **`smtp.office365.com` requires modern auth (OAuth2) since Oct 2022:** Basic auth on port 587 is disabled tenant-wide. Apps still configured with username/password silently fail with `535 5.7.139`. Use SendGrid or app passwords with MFA bypass. - **East US vs East US 2 cluster mix breaks cross-region pod traffic:** painelclientes (EUS2) and cafehyna (EUS) clusters can't share private DNS zones without explicit VNet peering — ingress hostnames resolve but pod-to-pod fails. Check the region column before assuming connectivity.
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.