-
Notifications
You must be signed in to change notification settings - Fork 1
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
Use DNS for S3 storage + set storage root directory in application.yml #51
Conversation
Signed-off-by: Etienne Homer <[email protected]>
Signed-off-by: Etienne Homer <[email protected]>
Signed-off-by: Etienne Homer <[email protected]>
@@ -172,7 +173,7 @@ public String getOriginalFilename(UUID caseUuid) { | |||
return getCaseMetaDataEntity(caseUuid).getOriginalFilename(); | |||
} | |||
|
|||
// key format is "gsi-cases/UUID/path/to/file" | |||
// key format is "cases/UUID/path/to/file" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// key format is "cases/UUID/path/to/file" | |
// key format is "<rootDirectory>/UUID/path/to/file" |
Signed-off-by: Etienne Homer <[email protected]>
Signed-off-by: Etienne Homer <[email protected]>
Signed-off-by: Etienne Homer <[email protected]>
Signed-off-by: Etienne Homer <[email protected]>
@@ -11,15 +11,15 @@ spring: | |||
aws: | |||
s3: | |||
path-style-access-enabled: true | |||
endpoint: http://172.17.0.1:19000 | |||
endpoint: http://s3-storage:9000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
endpoint: http://s3-storage:9000 | |
# classic minio port, useful default for exploring | |
endpoint: http://s3-storage:9000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Signed-off-by: Etienne Homer <[email protected]>
Signed-off-by: Etienne Homer <[email protected]>
Signed-off-by: Etienne Homer <[email protected]>
Signed-off-by: Etienne Homer <[email protected]>
Signed-off-by: Etienne Homer <[email protected]>
Signed-off-by: Etienne Homer <[email protected]>
Quality Gate passedIssues Measures |
Please check if the PR fulfills these requirements
Does this PR already have an issue describing the problem?
No
What is the current behavior?
We use the IP to connect to s3-storage.
What is the new behavior (if this is a feature change)?
We now use the DNS as we do for other technical containers.
Does this PR introduce a breaking change or deprecate an API?