fix: use lowercase image name for docker registry compliance
Build MCP Services / build-mcp-filesystem (push) Successful in 1m21s Details

This commit is contained in:
Antigravity 2026-05-13 15:05:17 -04:00
parent 1e926f8072
commit 15ab4d8696
3 changed files with 7 additions and 10 deletions

View File

@ -18,6 +18,6 @@ jobs:
gcr.io/kaniko-project/executor:latest \ gcr.io/kaniko-project/executor:latest \
--context=dir://"$GITHUB_WORKSPACE" \ --context=dir://"$GITHUB_WORKSPACE" \
--dockerfile="$GITHUB_WORKSPACE/Dockerfile" \ --dockerfile="$GITHUB_WORKSPACE/Dockerfile" \
--destination=192.168.8.250:5000/Curio:latest \ --destination=192.168.8.250:5000/curio:latest \
--insecure \ --insecure \
--skip-tls-verify --skip-tls-verify

View File

@ -1,15 +1,14 @@
apiVersion: apisix.apache.org/v2 apiVersion: apisix.apache.org/v2
kind: ApisixRoute kind: ApisixRoute
metadata: metadata:
name: curio-route name: Curio-route
namespace: curaflow namespace: Curio
spec: spec:
http: http:
- name: Curio-rule - name: Curio-rule
match: match:
hosts: hosts:
- curaflow.applaude.net - Curio.applaude.net
- curio.applaude.net
paths: paths:
- /* - /*
backends: backends:

View File

@ -1,8 +1,7 @@
apiVersion: apps/v1 apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
name: curio-app name: Curio-app
namespace: curaflow
spec: spec:
replicas: 2 replicas: 2
selector: selector:
@ -15,7 +14,7 @@ spec:
spec: spec:
containers: containers:
- name: Curio - name: Curio
image: 192.168.8.250:5000/Curio:latest image: 192.168.8.250:5000/curio:latest
ports: ports:
- containerPort: 3000 - containerPort: 3000
env: env:
@ -25,8 +24,7 @@ spec:
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:
name: curio-app name: Curio-app
namespace: curaflow
spec: spec:
selector: selector:
app: Curio-app app: Curio-app