[FEATURE] Update recipes to support amazonlinux 2023 installation [#896]
Test chef installation on AmazonLinux 2, 2022 and 2023
[FEATURE] Add agent configuration value to config template [#888]
Check inventories_configuration_enabled is in configuration file, and can be enabled with chef configuration
[FEATURE] Actually enforce apt and yum versions in the metadata.rb file [#874]
Validate below logic
# Use '< 6.0.0' with Chef < 12.9
if current_chef_version < Gem::Version.new(12.9)
depends 'apt', '< 6.0'
else
depends 'apt'
end
Use '< 5.0' with Chef < 12.14
if current_chef_version < Gem::Version.new(12.14)
depends 'yum', '>= 3.0', '< 5.0'
else
depends 'yum', '>= 3.0'
end
* [FEATURE] support weblogic integration [#891]
Enable weblogic and check it's enabled in configuration
* [FEATURE] Add new APT and RPM signing keys [#890]
Check the new key is downloaded during installation process
<!--
* Write here in detail or link to detailed instructions on how this change can
be tested/QAd/validated, including any environment setup.
-->
### Reviewer's Checklist
<!--
* Authors can use this list as a reference to ensure that there are no problems
during the review but the signing off is to be done by the reviewer(s).
Note: Adding GitHub labels is only possible for contributors with write access.
-->
What does this PR do?
Prepare next release
Motivation
Especially propagate new keys
Additional Notes
Possible Drawbacks / Trade-offs
Describe how to test/QA your changes
[FEATURE] Update recipes to support amazonlinux 2023 installation [#896] Test chef installation on AmazonLinux 2, 2022 and 2023
[FEATURE] Add agent configuration value to config template [#888] Check inventories_configuration_enabled is in configuration file, and can be enabled with chef configuration
[FEATURE] Actually enforce
apt
andyum
versions in themetadata.rb
file [#874] Validate below logicUse '< 5.0' with Chef < 12.14
if current_chef_version < Gem::Version.new(12.14) depends 'yum', '>= 3.0', '< 5.0' else depends 'yum', '>= 3.0' end