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 - main
env: env:
REGISTRY: gitea.anvil.it.com REGISTRY: gitea.inouter.com
IMAGE_NAME: ${{ gitea.repository }} IMAGE_NAME: ${{ gitea.repository }}
jobs: 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` 헤더 필요: 모든 요청에 `X-API-Key` 헤더 필요:
```bash ```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에 저장됨: API Key는 Vault에 저장됨:

View File

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

View File

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