fix: use lowercase image name for docker registry compliance
Build MCP Services / build-mcp-filesystem (push) Successful in 1m21s
Details
Build MCP Services / build-mcp-filesystem (push) Successful in 1m21s
Details
This commit is contained in:
parent
1e926f8072
commit
15ab4d8696
|
|
@ -18,6 +18,6 @@ jobs:
|
|||
gcr.io/kaniko-project/executor:latest \
|
||||
--context=dir://"$GITHUB_WORKSPACE" \
|
||||
--dockerfile="$GITHUB_WORKSPACE/Dockerfile" \
|
||||
--destination=192.168.8.250:5000/Curio:latest \
|
||||
--destination=192.168.8.250:5000/curio:latest \
|
||||
--insecure \
|
||||
--skip-tls-verify
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
apiVersion: apisix.apache.org/v2
|
||||
kind: ApisixRoute
|
||||
metadata:
|
||||
name: curio-route
|
||||
namespace: curaflow
|
||||
name: Curio-route
|
||||
namespace: Curio
|
||||
spec:
|
||||
http:
|
||||
- name: Curio-rule
|
||||
match:
|
||||
hosts:
|
||||
- curaflow.applaude.net
|
||||
- curio.applaude.net
|
||||
- Curio.applaude.net
|
||||
paths:
|
||||
- /*
|
||||
backends:
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: curio-app
|
||||
namespace: curaflow
|
||||
name: Curio-app
|
||||
spec:
|
||||
replicas: 2
|
||||
selector:
|
||||
|
|
@ -15,7 +14,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: Curio
|
||||
image: 192.168.8.250:5000/Curio:latest
|
||||
image: 192.168.8.250:5000/curio:latest
|
||||
ports:
|
||||
- containerPort: 3000
|
||||
env:
|
||||
|
|
@ -25,8 +24,7 @@ spec:
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: curio-app
|
||||
namespace: curaflow
|
||||
name: Curio-app
|
||||
spec:
|
||||
selector:
|
||||
app: Curio-app
|
||||
|
|
|
|||
Loading…
Reference in New Issue