Skip to content

Commit

Permalink
Updated naming/README to be more inline with current use
Browse files Browse the repository at this point in the history
  • Loading branch information
timwekkenbc committed Nov 12, 2024
1 parent ef04ffc commit eab88de
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ jobs:

- name: Run Helm
run: |
helm upgrade --install brms-api ./helm --set image.tag=${{ needs.build_image.outputs.image_tag }}
helm upgrade --install brm-backend ./helm --set image.tag=${{ needs.build_image.outputs.image_tag }}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BRMS API/Backend
# BRM (Business Rules Management) Backend

This project is the API/Backend for the SDPR Business Rules Engine (BRE) and Business Rules Engine Management System (BRMS). It will act primarly as the backend for the [frontend simulator](https://github.com/bcgov/brms-simulator-frontend).
This project is the Backend for the SDPR Business Rules Engine (BRE) and [BRM App](https://github.com/bcgov/brm-app).

## Local Development Setup

Expand Down
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v2
name: brms-api
description: A Helm chart for deploying brms-api
name: brm-backend
description: A Helm chart for deploying brm-backend
version: 0.1.0
10 changes: 5 additions & 5 deletions helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: brms-api
name: brm-backend
labels:
app.kubernetes.io/name: brms-api
app.kubernetes.io/name: brm-backend
spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
app.kubernetes.io/name: brms-api
app.kubernetes.io/name: brm-backend
template:
metadata:
labels:
app.kubernetes.io/name: brms-api
app.kubernetes.io/name: brm-backend
annotations:
helm.sh/release: "{{ .Release.Name }}"
helm.sh/revision: "{{ .Release.Revision }}"
spec:
containers:
- name: brms-api
- name: brm-backend
image: '{{ .Values.image.tag }}'
ports:
- containerPort: 8080
Expand Down
6 changes: 3 additions & 3 deletions helm/templates/service.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: brms-api
name: brm-backend
labels:
app.kubernetes.io/name: brms-api
app.kubernetes.io/name: brm-backend
spec:
selector:
app.kubernetes.io/name: brms-api
app.kubernetes.io/name: brm-backend
ports:
- protocol: TCP
port: 3000
Expand Down

0 comments on commit eab88de

Please sign in to comment.