Loading...
Loading...
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).
npx skill4agent add julianobarbosa/claude-code-skills external-urls| Service | URL | Purpose |
|---|---|---|
| ArgoCD | | GitOps UI & API |
| Sentry | | Error tracking |
| SonarQube | | Code quality |
| phpMyAdmin | | MySQL admin |
| Adminer | | Multi-DB admin |
| Mimir | | Metrics storage |
| Service | URL | Purpose |
|---|---|---|
| Sentry | | Error tracking |
| SonarQube | | Code quality |
| Grafana OnCall | | On-call management |
| phpMyAdmin | | MySQL admin |
| RabbitMQ | | Message queue |
| Service | URL | Purpose |
|---|---|---|
| Sentry | | Error tracking |
| Cluster | API Server | Region |
|---|---|---|
| cafehyna-hub | | East US |
| cafehyna-dev | | East US |
| cafehyna-prd | | East US |
| painelclientes-dev | | East US 2 |
| painelclientes-prd | | East US 2 |
| loyalty-dev | | East US |
| Repository | URL |
|---|---|
| infra-team | |
| argo-cd-helm-values | |
| kubernetes-configuration | |
| Repository | URL | Charts |
|---|---|---|
| ingress-nginx | | ingress-nginx |
| jetstack | | cert-manager |
| bitnami | | external-dns, phpmyadmin, rabbitmq |
| prometheus-community | | kube-prometheus-stack |
| robusta | | robusta |
| cetic | | adminer |
| defectdojo | | defectdojo |
| Domain | Usage | Environment |
|---|---|---|
| Primary applications | All |
| Hypera-branded services | Hub/Prd |
| Development services | Dev |
| Corporate services | All |
letsencrypt-prodletsencrypt-stagingjuliano.barbosa@hypera.com.br| Service | Host | Environment |
|---|---|---|
| Office 365 | | Hub |
| SendGrid | | Production |
# 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# 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# 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| Category | Path Pattern |
|---|---|
| Application Ingress | |
| Cluster Endpoints | |
| Git Repositories | |
| Helm Repositories | |
| 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/check-urls.shscripts/list-urls.sh