-
Notifications
You must be signed in to change notification settings - Fork 16
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
ability to setup host using own postgress and ability to set custom storageclass and size #24
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
3a9b249
adding abviliy to setup host on external postgress
strelok899 6a1dd3a
adding ability to change storageclass name and size
strelok899 46e4292
fixing upload max size local storage bug
strelok899 f624cb5
make sure the uploadMaxSize is always string
strelok899 0f378b7
adding security context for write permissions to volume
strelok899 d69721f
fixing local storage permissions
strelok899 ca95fec
fixing max import size
strelok899 53a1359
fixing storage value for import
strelok899 5bdd1ba
Delete .vscode/settings.json
strelok899 f2d5f27
moving security context to work only if local
strelok899 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,8 @@ replicaCount: 1 | |
## @param outline.service.url The URL where the application will be accessible. | ||
## @param outline.service.port The port on which the application will run. | ||
## @param outline.fileStorage.type Type of file storage to be used (e.g., local, s3). | ||
## @param outline.fileStorage.storageClassName The storageclass name to use default "". | ||
## @param outline.fileStorage.storageSize The storageclass size to use default 250Gi. | ||
Comment on lines
+42
to
+43
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you use the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no with hands its 2 rows |
||
## @param outline.fileStorage.localRootDir Local directory path for storing files, if using local storage. | ||
## @param outline.fileStorage.uploadMaxSize Maximum file upload size limit. | ||
## @param outline.optional.collaborationUrl URL for collaboration features, if any. | ||
|
@@ -86,14 +88,17 @@ outline: | |
port: 3000 | ||
fileStorage: | ||
type: s3 # set to local|s3 | ||
storageClassName: "" | ||
storageSize: 250Gi | ||
localRootDir: /var/lib/outline/data | ||
uploadMaxSize: 26214400 | ||
uploadMaxSize: "26214400" | ||
|
||
optional: | ||
collaborationUrl: "" | ||
forceHttps: false | ||
enableUpdates: false | ||
webConcurrency: 1 | ||
fileStorageImportMaxSize: 5120000 | ||
fileStorageImportMaxSize: "5120000" | ||
logLevel: info | ||
googleAnalyticsId: "" | ||
sentry: | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Does the deployment face any issues without these permissions?
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.
yes no permissions to write to local storage
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.
Can we make this optional? Only when it's local storage. The other stuff looks good.
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.
@nushkovg done