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

Add support for ALLOW_EMPTY_PASSWORD when using bitnami/postgresql with Docker Compose #43771

Closed
wants to merge 1 commit into from

Conversation

hezean
Copy link
Contributor

@hezean hezean commented Jan 10, 2025

Adds support for ALLOW_EMPTY_PASSWORD in bitnami/postgresql.

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Jan 10, 2025
@hezean hezean force-pushed the docker-bitnami branch 2 times, most recently from 58498fc to 490a1a7 Compare January 11, 2025 12:41
@wilkinsona
Copy link
Member

Thanks for the PR. I think this is really doing four separate things:

  1. Correcting the environment variable names for the Postgres username and password. This is a bug that affects Spring Boot 3.3.x and later.
  2. Adding support for ALLOW_EMPTY_PASSWORD with Postgres. This is arguably an enhancement or could, perhaps, be treated as a bug of omission.
  3. Correcting the Clickhouse support when checking the value of ALLOW_EMPTY_PASSWORD. This is a bug that affects Spring Boot 3.4.x and later.
  4. Changing how the MariaDB and MySQL support handles the ALLOW_EMPTY_PASSWORD environment variable. It's debatable that this is needed as checking for the presence of ALLOW_EMPTY_PASSWORD is a reasonable approximation. If we want to tighten things up, we could do so as a task in 3.3.x and later.

Can you please split your PR up into four new PRs, one for each of the above? If you'd prefer to avoid that overhead, please let us know and we can open issues and take care of things. Either way, thanks again for this PR and for bringing the need for some changes to our attention.

@wilkinsona wilkinsona added the status: waiting-for-feedback We need additional information before we can continue label Jan 13, 2025
@hezean
Copy link
Contributor Author

hezean commented Jan 13, 2025

@wilkinsona I appreciate your reply and am willing to take any necessary action :)

Could you kindly provide some guidance on how can I split this PR, as point 2, 3, 4 you mentioned share the same isBooleanYes method. I'm considering the following approach:

  1. Open a new PR to fix the POSTGRESQL_USERNAME and POSTGRESQL_DATABASE issues
  2. Force push to this PR, leaving only the BitnamiUtils and the fix for Clickhouse
  3. After this PR is merged, open two new PRs: for Postgres, and for MySQL/Maria

@spring-projects-issues spring-projects-issues added status: feedback-provided Feedback has been provided and removed status: waiting-for-feedback We need additional information before we can continue labels Jan 13, 2025
@wilkinsona
Copy link
Member

wilkinsona commented Jan 13, 2025

Rather than introducing BitnamiUtils, which has to be public API due to it being used in multiple packages, I think I'd repeat the logic in each place that it's needed. We can either just look for ALLOW_EMPTY_PASSWORD and ignore its value (Bitnami will still check it), or we can support yes as that appears to be the value that's used in the various READMEs for the Bitnami images and is recommended in the error message (see here for example) when an empty password is detected and ALLOW_EMPTY_PASSWORD hasn't been set. ClickHouse may need to be an exception to this in case someone's already relying on true working.

@hezean
Copy link
Contributor Author

hezean commented Jan 13, 2025

Noted, that way I will put multiple isBooleanYes as private methods for each service connection :)

ClickHouse may need to be an exception to this in case someone's already relying on true working.

Please note that Bitnami treats 1, true, and yes as true value, refer to their impl, so we are not break anything.

@wilkinsona
Copy link
Member

For simplicity, I don't think we should support 1, true, and yes. It appears to only be yes that is documented. ClickHouse is a possible exception to this as the logic implemented in Boot currently only supports true:

boolean allowEmpty = Boolean.parseBoolean(env.getOrDefault("ALLOW_EMPTY_PASSWORD", Boolean.FALSE.toString()));

We might want to support both true and yes in this one case to avoid a breaking change.

That said, I'd prefer that we just consistently look for ALLOW_EMPTY_PASSWORD being set to any value and allow Bitnami to do the actual checking. That isolates Boot from any changes to what Bitnami supports and/or documents in the future. This isolation is important as Boot doesn't control the version of any Bitnami container that's used so we don't control when a user may try to use a container with different rules for the value of ALLOW_EMPTY_PASSWORD.

@hezean hezean changed the title Fix docker compose environment parsing for bitnami images Add support for empty password in bitnami/postgresql Jan 13, 2025
@hezean
Copy link
Contributor Author

hezean commented Jan 13, 2025

Blocked by #43787 for parsing the username and database

@hezean

This comment was marked as resolved.

@wilkinsona wilkinsona changed the title Add support for empty password in bitnami/postgresql Add support for empty password when using bitnami/postgresql with Docker Compose Jan 14, 2025
@wilkinsona wilkinsona added type: enhancement A general enhancement and removed status: waiting-for-triage An issue we've not yet triaged status: feedback-provided Feedback has been provided labels Jan 14, 2025
@wilkinsona wilkinsona added this to the 3.5.x milestone Jan 14, 2025
@wilkinsona wilkinsona changed the title Add support for empty password when using bitnami/postgresql with Docker Compose Add support for ALLOW_EMPTY_PASSWORD when using bitnami/postgresql with Docker Compose Jan 15, 2025
@wilkinsona wilkinsona self-assigned this Jan 15, 2025
@wilkinsona wilkinsona modified the milestones: 3.5.x, 3.5.0-M1 Jan 15, 2025
wilkinsona pushed a commit that referenced this pull request Jan 15, 2025
@wilkinsona
Copy link
Member

Thanks again, @hezean.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: enhancement A general enhancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants