기능 추가

This commit is contained in:
2026-01-05 13:15:49 +09:00
parent 9c7ba65c32
commit dcdcfecc40
12 changed files with 525 additions and 81 deletions

32
yaml/deploy.yaml Normal file
View File

@@ -0,0 +1,32 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ingress-migrator-web
spec:
replicas: 1
selector:
matchLabels:
app: ingress-migrator-web
template:
metadata:
labels:
app: ingress-migrator-web
spec:
serviceAccountName: ingress-migrator
containers:
- name: web
image: sa8001/ngtoha:v3
ports:
- containerPort: 8080
volumeMounts:
- name: work
mountPath: /work
- name: mapping
mountPath: /app/mapping.yaml
subPath: mapping.yaml
volumes:
- name: work
emptyDir: {}
- name: mapping
configMap:
name: ingress-migrator-mapping