Compare commits

...

7 Commits

Author SHA1 Message Date
43f7a60bd3 chore: anvil.it.com → inouter.com
All checks were successful
Build and Push Docker Image / build (push) Successful in 22s
2026-03-27 16:20:32 +00:00
a72046d211 fix: registry gitea.inouter.com
All checks were successful
Build and Push Docker Image / build (push) Successful in 18s
2026-03-27 15:41:33 +00:00
de276189a1 chore: rebuild test
Some checks failed
Build and Push Docker Image / build (push) Failing after 9s
2026-03-27 15:37:36 +00:00
c07e7d2029 chore: gitea.anvil.it.com → gitea.inouter.com
Some checks failed
Build and Push Docker Image / build (push) Failing after 11s
2026-03-27 15:33:16 +00:00
99919a46c2 chore: gitea.anvil.it.com → gitea.inouter.com
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
2026-03-27 15:32:59 +00:00
kappa
d8e306b30f Migrate to HTTPRoute with *.api.inouter.com domain
All checks were successful
Build and Push Docker Image / build (push) Successful in 53s
2026-03-26 13:35:43 +09:00
kaffa
8b539e804e fix: use latest tag
All checks were successful
Build and Push Docker Image / build (push) Successful in 13s
2026-03-24 12:23:20 +00:00
5 changed files with 19 additions and 22 deletions

View File

@@ -7,7 +7,7 @@ on:
- main
env:
REGISTRY: gitea.anvil.it.com
REGISTRY: gitea.inouter.com
IMAGE_NAME: ${{ gitea.repository }}
jobs:

View File

@@ -1 +1 @@
1774354860
rebuild: 1774625855

View File

@@ -242,7 +242,7 @@ OpenAI Function Calling / Custom GPT / Cloudflare Workers에서 사용할 수
### 공개 엔드포인트
```
https://namecheap-api.anvil.it.com
https://namecheap.api.inouter.com
```
### 인증
@@ -250,7 +250,7 @@ https://namecheap-api.anvil.it.com
모든 요청에 `X-API-Key` 헤더 필요:
```bash
curl -H "X-API-Key: YOUR_API_KEY" https://namecheap-api.anvil.it.com/domains
curl -H "X-API-Key: YOUR_API_KEY" https://namecheap.api.inouter.com/domains
```
API Key는 Vault에 저장됨:

View File

@@ -14,7 +14,7 @@ spec:
app: namecheap-api
spec:
containers:
- image: gitea.anvil.it.com/kaffa/namecheap-api:87b51c1
- image: gitea.inouter.com/kaffa/namecheap-api:latest
imagePullPolicy: Always
name: namecheap-api
ports:

View File

@@ -1,21 +1,18 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: namecheap-api
spec:
ingressClassName: traefik
tls:
- secretName: wildcard-anvil-it-com-tls
hosts:
- namecheap-api.anvil.it.com
hostnames:
- namecheap.api.inouter.com
parentRefs:
- name: traefik-gateway
namespace: kube-system
rules:
- host: namecheap-api.anvil.it.com
http:
paths:
- backend:
service:
name: namecheap-api
port:
number: 80
path: /
pathType: Prefix
- matches:
- path:
type: PathPrefix
value: /
backendRefs:
- name: namecheap-api
port: 80