[Bytesafe] Add support for PostgreSQL sslmode parameter#45
Open
conclusionlogic wants to merge 4 commits intoSimCubeLtd:masterfrom
Open
[Bytesafe] Add support for PostgreSQL sslmode parameter#45conclusionlogic wants to merge 4 commits intoSimCubeLtd:masterfrom
sslmode parameter#45conclusionlogic wants to merge 4 commits intoSimCubeLtd:masterfrom
Conversation
This commit introduces several changes to the `statefulSet.yaml` template to enhance readability and maintainability: - Indentation has been corrected across various sections to ensure consistency and improve the visual hierarchy of the YAML structure. - Conditional blocks for `statefulSet.labels`, `statefulSet.annotations`, `pod.labels`, and `pod.annotations` have been adjusted to include proper indentation and spacing, making it easier to distinguish between nested properties. - The `serviceName` attribute under `spec` has been explicitly set to use the `bytesafe.fullname` template, ensuring clarity in service references. - Added conditions to check the creation of a service account and set `automountServiceAccountToken` to true, which is crucial for environments where service accounts need automatic token mounting. - Adjusted the handling of persistent volume claims to align with the enabled state of persistence and the presence of an existing claim, improving the logic flow and readability. - Minor formatting adjustments have been made to the environment variables and their values to maintain uniformity in key-value assignments.
This commit introduces several changes to the `statefulSet.yaml` template to enhance readability and maintainability: - Indentation has been corrected across various sections to ensure consistency and improve the visual hierarchy of the YAML structure. - Conditional blocks for `statefulSet.labels`, `statefulSet.annotations`, `pod.labels`, and `pod.annotations` have been adjusted to include proper indentation and spacing, making it easier to distinguish between nested properties. - The `serviceName` attribute under `spec` has been explicitly set to use the `bytesafe.fullname` template, ensuring clarity in service references. - Added conditions to check the creation of a ServiceAccount and set `automountServiceAccountToken` to true as well as referenced the correct ServiceAccount name.
This commit introduces the following changes to `config.yaml` template and `values.yaml` file for bytesafe-ce@v1.0.12: - Creates and configures DB_SSLMODE environment variable using `config.yaml` template - Default value for `sslmode` set to `prefer` using `.Values.postgresql.auth.sslmode` and `.Values.externalDatabase.sslmode` parameters - Bumps default Chart version, appVersion, tag values from 1.0.4 to 1.0.12
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR introduces the following changes to the
config.yamltemplate andvalues.yamlsupporting bytesafe-ce@v1.0.12:DB_SSLMODEenvironment variable using theconfig.yamltemplate.sslmodetopreferusing the.Values.postgresql.auth.sslmodeand.Values.externalDatabase.sslmodeparameters.PS: This PR is built on top of changes introduced in #44