Add more package names

This commit is contained in:
Alex Mullans 2021-10-07 14:17:12 -07:00
parent 6f8d411bc4
commit 12db3f73ea

View file

@ -58,70 +58,93 @@ func init() {
// for display in the TOC menu under API Reference.
func titleLookup(shortName string) (string, bool) {
v, ok := map[string]string{
"aiven": "Aiven",
"akamai": "Akamai",
"alicloud": "Alibaba Cloud",
"auth0": "Auth0",
"aws": "AWS Classic",
"aws-native": "AWS Native",
"azure": "Azure Classic",
"azure-native": "Azure Native",
"azuread": "Azure Active Directory",
"azuredevops": "Azure DevOps",
"azuresel": "Azure",
"civo": "Civo",
"cloudamqp": "CloudAMQP",
"cloudflare": "Cloudflare",
"cloudinit": "cloud-init",
"confluent": "Confluent Cloud",
"consul": "Consul",
"datadog": "Datadog",
"digitalocean": "DigitalOcean",
"dnsimple": "DNSimple",
"docker": "Docker",
"eks": "Amazon EKS",
"equinix-metal": "Equinix Metal",
"f5bigip": "f5 BIG-IP",
"fastly": "Fastly",
"gcp": "Google Cloud Classic",
"google-native": "Google Cloud Native",
"github": "GitHub",
"gitlab": "GitLab",
"hcloud": "Hetzner Cloud",
"kafka": "Kafka",
"keycloak": "Keycloak",
"kong": "Kong",
"kubernetes": "Kubernetes",
"libvirt": "libvirt",
"linode": "Linode",
"mailgun": "Mailgun",
"minio": "MinIO",
"mongodbatlas": "MongoDB Atlas",
"mysql": "MySQL",
"newrelic": "New Relic",
"nomad": "Nomad",
"ns1": "NS1",
"okta": "Okta",
"openstack": "OpenStack",
"opsgenie": "Opsgenie",
"packet": "Packet",
"pagerduty": "PagerDuty",
"postgresql": "PostgreSQL",
"rabbitmq": "RabbitMQ",
"rancher2": "Rancher 2",
"random": "random",
"rke": "Rancher RKE",
"signalfx": "SignalFx",
"snowflake": "Snowflake",
"splunk": "Splunk",
"spotinst": "Spotinst",
"sumologic": "Sumo Logic",
"tls": "TLS",
"vault": "Vault",
"venafi": "Venafi",
"vsphere": "vSphere",
"wavefront": "Wavefront",
"yandex": "Yandex",
"aiven": "Aiven",
"akamai": "Akamai",
"alicloud": "Alibaba Cloud",
"auth0": "Auth0",
"aws": "AWS Classic",
"aws-api-gateway": "AWS API Gateway",
"aws-miniflux": "Miniflux",
"aws-native": "AWS Native",
"aws-quickstart-aurora-mysql": "AWS QuickStart Aurora MySQL",
"aws-quickstart-aurora-postgresql": "AWS QuickStart Aurora PostgreSQL",
"aws-quickstart-redshift": "AWS QuickStart Redshift",
"aws-serverless": "AWS Serverless",
"aws-quickstart-vpc": "AWS QuickStart VPC",
"aws-s3-replicated-bucket": "AWS S3 Replicated Bucket",
"azure": "Azure Classic",
"azure-native": "Azure Native",
"azure-quickstart-acr-geo-replicated": "Azure QuickStart ACR Geo Replicated",
"azure-quickstart-aks": "Azure QuickStart AKS",
"azure-quickstart-compute": "Azure QuickStart Compute",
"azure-quickstart-sql": "Azure QuickStart SQL",
"azuread": "Azure Active Directory",
"azuredevops": "Azure DevOps",
"azuresel": "Azure",
"civo": "Civo",
"cloudamqp": "CloudAMQP",
"cloudflare": "Cloudflare",
"cloudinit": "cloud-init",
"confluent": "Confluent Cloud",
"consul": "Consul",
"coredns-helm": "CoreDNS (Helm)",
"datadog": "Datadog",
"digitalocean": "DigitalOcean",
"dnsimple": "DNSimple",
"docker": "Docker",
"docker-buildkit": "Docker BuildKit",
"eks": "Amazon EKS",
"equinix-metal": "Equinix Metal",
"f5bigip": "f5 BIG-IP",
"fastly": "Fastly",
"gcp": "Google Cloud Classic",
"gcp-cloudrun-multi-region": "Google Cloud Run Multi-Region",
"gcp-project-scaffold": "Google Project Scaffolding",
"google-native": "Google Cloud Native",
"github": "GitHub",
"github-serverless-webhook": "GitHub Serverless Webhook",
"gitlab": "GitLab",
"hcloud": "Hetzner Cloud",
"istio-helm": "Istio (Helm)",
"jaeger-helm": "Jaeger (Helm)",
"kafka": "Kafka",
"keycloak": "Keycloak",
"kong": "Kong",
"kubernetes": "Kubernetes",
"libvirt": "libvirt",
"linode": "Linode",
"mailgun": "Mailgun",
"minio": "MinIO",
"mongodbatlas": "MongoDB Atlas",
"mysql": "MySQL",
"newrelic": "New Relic",
"nginx-ingress-controller-helm": "NGINX Ingress Controller (Helm)",
"nomad": "Nomad",
"ns1": "NS1",
"okta": "Okta",
"openstack": "OpenStack",
"opsgenie": "Opsgenie",
"packet": "Packet",
"pagerduty": "PagerDuty",
"postgresql": "PostgreSQL",
"prometheus-helm": "Prometheus (Helm)",
"rabbitmq": "RabbitMQ",
"rancher2": "Rancher 2",
"random": "random",
"rke": "Rancher RKE",
"run-my-darn-container": "Run My Darn Container",
"shipa": "Shipa",
"signalfx": "SignalFx",
"snowflake": "Snowflake",
"splunk": "Splunk",
"spotinst": "Spotinst",
"sumologic": "Sumo Logic",
"tls": "TLS",
"vault": "Vault",
"venafi": "Venafi",
"vsphere": "vSphere",
"wavefront": "Wavefront",
"yandex": "Yandex",
}[shortName]
return v, ok
}