Skip to content

Commit c747096

Browse files
authored
Merge pull request #9 from techops-services/deploy-and-db
Fix up naming, add DB
2 parents dbe805b + 039d2d9 commit c747096

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ on:
55
# - main
66
workflow_dispatch:
77

8-
name: deploy-vw
8+
name: deploy-keeperhub
99
jobs:
10-
build-and-deploy-vw:
10+
build-and-deploy-keeperhub:
1111
environment: ${{ github.ref == 'refs/heads/main' && 'prod' || 'staging' }}
1212
runs-on: ubuntu-latest
1313
env:
1414
HELM_FILE: deploy/${{ github.ref == 'refs/heads/main' && 'prod' || 'staging' }}/values.yaml
1515
REGION: ${{ github.ref == 'refs/heads/main' && 'us-east-1' || 'us-east-2' }}
1616
CLUSTER_NAME: ${{ github.ref == 'refs/heads/main' && 'maker-prod' || 'maker-staging' }}
1717
ENVIRONMENT_TAG: ${{ github.ref == 'refs/heads/main' && 'prod' || 'staging' }}
18-
NAMESPACE: vw
19-
SERVICE_NAME: vw
20-
AWS_ECR_NAME: keeper-app-vw-${{ github.ref == 'refs/heads/main' && 'prod' || 'staging' }}
18+
NAMESPACE: keeperhub
19+
SERVICE_NAME: keeperhub
20+
AWS_ECR_NAME: keeperhub-${{ github.ref == 'refs/heads/main' && 'prod' || 'staging' }}
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v4

deploy/staging/values.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ replicaCount: 1
22

33
service:
44
enabled: true
5-
name: vw-staging
5+
name: keeperhub-staging
66
port: 3000
77
type: ClusterIP
88
containerPort: 3000
@@ -25,7 +25,7 @@ httpWwwRedirect:
2525
httpBasicAuth:
2626
enabled: false
2727
image:
28-
repository: ${ECR_REGISTRY}/keeper-app-vw-staging
28+
repository: ${ECR_REGISTRY}/keeperhub-staging
2929
tag: latest
3030
pullPolicy: Always
3131

@@ -80,10 +80,10 @@ env:
8080
type: parameterStore
8181
name: etherscan-api-key
8282
parameter_name: /eks/maker-staging/keeper-app/etherscan-api-key
83-
# DATABASE_URL:
84-
# type: parameterStore
85-
# name: database-url
86-
# parameter_name: /eks/maker-staging/keeperhub/database-url
83+
DATABASE_URL:
84+
type: parameterStore
85+
name: db-url
86+
parameter_name: /eks/maker-staging/keeperhub/db-url
8787
externalSecrets:
8888
clusterSecretStoreName: maker-staging
8989

0 commit comments

Comments
 (0)