diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index a761848..8730c51 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -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 }} diff --git a/README.md b/README.md index e248224..c2b0e68 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 237ae52..9a26b0d 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -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 diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index 35d0817..bad072c 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -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 diff --git a/helm/templates/service.yaml b/helm/templates/service.yaml index 60db6fe..7a7e2d3 100644 --- a/helm/templates/service.yaml +++ b/helm/templates/service.yaml @@ -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