Skip to content

Commit

Permalink
FEAT
Browse files Browse the repository at this point in the history
batch service
  • Loading branch information
MJun111 committed Jan 25, 2024
1 parent 9625100 commit 4329217
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
15 changes: 15 additions & 0 deletions grade-batch-service/pod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: grade-batch-service
namespace: prod
labels:
app: grade-batch-service
spec:
restartPolicy: Never
containers:
- name: grade-batch-service
image: ${REPOSITORY_URI}/jeontongju-grade-batch-service:${IMAGE_TAG}
ports:
- containerPort: 8080
imagePullPolicy: Always
15 changes: 15 additions & 0 deletions order-batch-product-confirm-service/pod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: order-batch-product-confirm-service
namespace: prod
labels:
app: order-batch-product-confirm-service
spec:
restartPolicy: Never
containers:
- name: order-batch-product-confirm-service
image: ${REPOSITORY_URI}/jeontongju-order-batch-product-confirm-service:${IMAGE_TAG}
ports:
- containerPort: 8080
imagePullPolicy: Always
15 changes: 15 additions & 0 deletions order-batch-settlement-service/pod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: order-batch-settlement-pod
namespace: prod
labels:
app: order-batch-settlement-service
spec:
restartPolicy: Never
containers:
- name: order-batch-settlement-service
image: ${REPOSITORY_URI}/jeontongju-order-batch-settlement-service:${IMAGE_TAG}
ports:
- containerPort: 8080
imagePullPolicy: Always
15 changes: 15 additions & 0 deletions subscription-batch-service/pod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: subscription-batch-service
namespace: prod
labels:
app: subscription-batch-service
spec:
restartPolicy: Never
containers:
- name: subscription-batch-service
image: ${REPOSITORY_URI}/jeontongju-subscription-batch-service${IMAGE_TAG}
ports:
- containerPort: 8080
imagePullPolicy: Always

0 comments on commit 4329217

Please sign in to comment.