Troubleshoot Kubernetes installation issues
This section describes some of the most common issues found during the Akamas installation on Kubernetes.
Issues with HTTP being redirected to HTTPS
NGINX Ingress controller case
server {
listen 80;
listen [::]:80;
listen 443 ssl;
listen [::]:443 ssl;
ssl_certificate /etc/nginx/secrets/AKAMAS_NAMESPACE-tls;
ssl_certificate_key /etc/nginx/secrets/AKAMAS_NAMESPACE-tls;
if ($scheme = http) {
return 301 https://$host:443$request_uri;
}Last updated
Was this helpful?