https://github.com/serverscom/serverscom-ingress-controller
serverscom-ingress-controller
https://github.com/serverscom/serverscom-ingress-controller
Last synced: 5 months ago
JSON representation
serverscom-ingress-controller
- Host: GitHub
- URL: https://github.com/serverscom/serverscom-ingress-controller
- Owner: serverscom
- License: apache-2.0
- Created: 2024-02-16T10:35:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-09-16T12:27:14.000Z (9 months ago)
- Last Synced: 2025-12-22T22:19:20.473Z (6 months ago)
- Language: Go
- Size: 178 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kubernetes Ingress Controller Manager for Servers.com
Servers.com provides you with the own Ingress controller built upon the Servers.com HTTP(S) (L7) Load Balancer. It can be used along with the LoadBalancer and NodePort Services.
The Ingress controller is featured with annotations based on the L7 Load Balancer features.
You can find more details on the Servers.com Ingress controller and peculiarities of usage in the [knowledge base](https://www.servers.com/support/knowledge/kubernetes-clusters/serverscom-ingress-controller).
This is an example how an Ingress object with an annotation may look like:
```
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: minimal-ingress
annotations:
servers.com/load-balancer-geo-ip-enabled: "true"
spec:
ingressClassName: serverscom
tls:
- hosts:
- example.com
secretName: testsecret-tls
rules:
- host: example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: nginxdemo
port:
number: 80
```
[](https://github.com/serverscom/serverscom-ingress-controller/actions)