You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
continuous-integration/drone/push Build is passing
Details
|
3 years ago | |
|---|---|---|
| global | 3 years ago | |
| ip2region | 3 years ago | |
| manifests | 3 years ago | |
| util | 3 years ago | |
| .drone.yml | 3 years ago | |
| .gitignore | 4 years ago | |
| Dockerfile | 3 years ago | |
| Jenkinsfile | 3 years ago | |
| Makefile | 3 years ago | |
| README.md | 3 years ago | |
| go.mod | 3 years ago | |
| ip2region.db | 4 years ago | |
| ip_test.go | 3 years ago | |
| main.go | 3 years ago | |
README.md
ip地址归属地查询
http://127.0.0.1:8080?address=git.sre.ink http://127.0.0.1:8080
build arm64 on oracle k8s
cd /root
rm -rf IPRegion
git clone https://git.sre.ink/go/IPRegion.git
cd IPRegion
make build-linux-arm64
docker build -t sre/ipregion:arm64 .
kubectl rollout restart deployment -n sre ipregion
bench
goos: windows
goarch: amd64
pkg: IPRegion/ip2region
cpu: AMD Ryzen 9 5900HX with Radeon Graphics
BenchmarkBtreeSearch
BenchmarkBtreeSearch-16 215227 5310 ns/op
BenchmarkMemorySearch
BenchmarkMemorySearch-16 5435004 220.3 ns/op
BenchmarkBinarySearch
BenchmarkBinarySearch-16 34378 34766 ns/op
PASS
ingress
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ingress-ip2region
namespace: sre
annotations:
kubernetes.io/ingress.class: "nginx" # 自动签发开关
cert-manager.io/cluster-issuer: "letsencrypt-prod-http01" # 自动签发开关
spec:
tls:
- hosts:
- test.com
secretName: ingress-tls-test-com # 需要修改
rules:
- host: test.com
http:
paths:
- path: /
backend:
service:
name: ipregion
port:
number: 8080
pathType: ImplementationSpecific