Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(Baobab) Add bisontry-messenger #240

Merged
merged 1 commit into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bisontry-messenger/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: v2
name: bisontry-messenger
description: Bisontry Messenger service.
version: 0.1.0
appVersion: v0.1.0.20231228.2125.41dd762
23 changes: 23 additions & 0 deletions bisontry-messenger/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ .Values.deployment.name }}
spec:
replicas: {{ .Values.deployment.replicas }}
selector:
matchLabels:
app: {{ .Values.deployment.name }}
template:
metadata:
labels:
app: {{ .Values.deployment.name }}
spec:
imagePullSecrets:
- name: bisontry-gar-json-key
containers:
- name: {{ .Values.deployment.name }}
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
imagePullPolicy: Always
envFrom:
- secretRef:
name: {{ .Values.deployment.name }}-secrets
12 changes: 12 additions & 0 deletions bisontry-messenger/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
global:
name: bisontry-messenger
namespace: orakl

image:
repository: asia-southeast1-docker.pkg.dev/bisontry/bisontry/bisontry-messenger
jay-kim-kor marked this conversation as resolved.
Show resolved Hide resolved
tag: v0.0.1.20240216.0351.30594bb

deployment:
name: bisontry-messenger
replicas: 1
resources:
Loading