Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Persistent Redis (Update Jest Snapshot) #179

Merged
merged 22 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cdk/kittyhawk/.projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const project = new TypeScriptProject({
},
});

project.addFields({ ["version"]: "1.1.9" });
project.addFields({ ["version"]: "1.1.10" });
project.prettier?.ignoreFile?.addPatterns("src/imports");
project.testTask.steps.forEach((step) => {
if (step.exec) {
Expand Down
2 changes: 1 addition & 1 deletion cdk/kittyhawk/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions cdk/kittyhawk/src/application/redis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ export class RedisApplication extends Application {
deployment: {
image: redisProps.deployment?.image ?? "redis",
tag: redisProps.deployment?.tag ?? "6.0",
...(redisProps.persistData
? { cmd: ["redis-server", "/redis-master/redis.conf"] }
: {}),
volumeMounts: [
...(redisProps.persistData
? [
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading