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: getuers
spec:
replicas: 1
selector:
matchLabels:
app: voyger-assign-getusers
template:
metadata:
labels:
app: voyger-assign-getusers
spec:
serviceAccountName: voyger-assign
containers:
- name: voyger-assign-getusers
image: harbor.icurfer.com/voyger-assign/getusers: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

View File

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