Skip to content

Commit ea91aa3

Browse files
authored
Merge pull request #8 from qireal/main
Update readme file
2 parents 3f9ec11 + cea5806 commit ea91aa3

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

README.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
11
# Kubernetes Ingress Controller Manager for Servers.com
2+
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.
3+
The Ingress controller is featured with annotations based on the L7 Load Balancer features.
4+
5+
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).
6+
7+
This is an example how an Ingress object with an annotation may look like:
8+
9+
```
10+
apiVersion: networking.k8s.io/v1
11+
kind: Ingress
12+
metadata:
13+
name: minimal-ingress
14+
annotations:
15+
servers.com/load-balancer-geo-ip-enabled: "true"
16+
spec:
17+
ingressClassName: serverscom
18+
tls:
19+
- hosts:
20+
- example.com
21+
secretName: testsecret-tls
22+
rules:
23+
- host: example.com
24+
http:
25+
paths:
26+
- path: /
27+
pathType: Prefix
28+
backend:
29+
service:
30+
name: nginxdemo
31+
port:
32+
number: 80
33+
```
234

335
[![GitHub Actions status](https://github.com/serverscom/serverscom-ingress-controller/workflows/Test/badge.svg)](https://github.com/serverscom/serverscom-ingress-controller/actions)

0 commit comments

Comments
 (0)