demo update

This commit is contained in:
2025-11-15 19:27:31 +09:00
parent 7a85b80f60
commit 78e3cc39eb
18 changed files with 235 additions and 0 deletions

View File

@ -0,0 +1,25 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: signup
spec:
replicas: 1
selector:
matchLabels:
app: voyger-assign-signup
template:
metadata:
labels:
app: voyger-assign-signup
spec:
serviceAccountName: voyger-assign
containers:
- name: voyger-assign-signup
image: harbor.icurfer.com/voyger-assign/signup:0.0
volumeMounts:
- name: db-data
mountPath: /usr/src/app/data
volumes:
- name: db-data
persistentVolumeClaim:
claimName: voyger-assign

View File

@ -0,0 +1,6 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- deployment.yaml
- service.yaml

12
base/signUp/service.yaml Normal file
View File

@ -0,0 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: signup
spec:
selector:
app: voyger-assign-signup
ports:
- protocol: TCP
port: 80
targetPort: 5000