Skip to content

Commit

Permalink
added .env.example in oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmssdish committed Dec 18, 2023
1 parent ecc4bf0 commit 4aee76b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 22 deletions.
21 changes: 3 additions & 18 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
sourceMqtts=
sourceHttp=
destinationS3=
destinationDynamodb=
localFilePathMqtts=
localFilePathHttp=
mqttsBroker=
topic=
clientId=
caFilePath=
httpPortNumber=
httpRoute=
s3BucketName=
s3FileKeyMqtts=
s3FileKeyHttp=
s3Region=
dynamodbTableName=
dynamodbRegion=
VAULT_URL=
VAULT_TOKEN=
FINDR_ORCHESTRATOR_URL=
2 changes: 1 addition & 1 deletion .github/workflows/adapters-harbor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
context: .
file: ./Dockerfile_adapters
push: true
tags: pravnreddy429/findr:adapters_v1
tags: pravnreddy429/findr_adapters:v1
2 changes: 1 addition & 1 deletion .github/workflows/oracle-harbor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
context: .
file: ./Dockerfile_oracle
push: true
tags: pravnreddy429/findr:oracle_v1
tags: pravnreddy429/findr_oracle:v1
4 changes: 2 additions & 2 deletions findr/oracle/oracle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,10 +435,10 @@ class Oracle {
vaultClient.writeSecret(vaultPath, vaultValue)
console.log('vaultPath:', vaultPath)

const sendOrchestratorRequestUrl = 'ip' // Replace with the actual orchestrator URL
const sendOrchestratorRequestUrl = process.env.FINDR_ORCHESTRATOR_URL ?? ''
const sendOrchestratorRequestResponse = this.sendOrchestratorRequest(
sendOrchestratorRequestUrl,
this.messageToSent
this.messageToSent
)
console.log('sendOrchestratorRequestResponse:', sendOrchestratorRequestResponse);

Expand Down

0 comments on commit 4aee76b

Please sign in to comment.