Skip to content

Commit

Permalink
updated docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
dejwakh committed Jul 29, 2021
1 parent 02d8c48 commit 6dcff67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/consumer.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class ConsumerGroup extends cdk.Stack {
});

consumerTaskDefinition.addContainer('fjord-consumer', {
image: ecs.ContainerImage.fromRegistry("dockervahid/consumer3"),
image: ecs.ContainerImage.fromRegistry("dockervahid/fjord-consumer"),
portMappings: [{ containerPort: 8080 }],
environment: {
CLIENT: "Fjord-" + NAME,
Expand Down
2 changes: 1 addition & 1 deletion lib/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Server extends cdk.Stack {
cpu: 256, // Default is 256
desiredCount: 2, // Default is 1
taskImageOptions: {
image: ecs.ContainerImage.fromRegistry("dockervahid/server3"),
image: ecs.ContainerImage.fromRegistry("dockervahid/fjord-server"),
environment: {
JWT_KEY,
SEC_PER_PULSE,
Expand Down
2 changes: 1 addition & 1 deletion lib/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function getSettings() {
})
console.log('3. Consumergroups params successfully loaded (' + s.consumerGroups.length + ` consumer group${s.consumerGroups.length > 1 ? 's' : ''})`);
s.consumerGroups.forEach((c, idx) => {
console.log(` 3.${idx+1} ${c.NAME}: ${c.kafkaTopicsNum} topic${c.kafkaTopicsNum > 1 ? 's' : ''}`)
console.log(` 3.${idx+1} ${c.NAME} - ${c.kafkaTopicsNum} topic${c.kafkaTopicsNum > 1 ? 's' : ''}: ${c.API_TOPICS}`)
});
console.log("4. All Settings for " + s.name + ' successfully loaded! See below for template.')
} catch(err) {
Expand Down

0 comments on commit 6dcff67

Please sign in to comment.