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 Amazon Linux 2023 agent in PE environment #716

Closed
vchepkov opened this issue May 9, 2024 · 15 comments
Closed

add support for Amazon Linux 2023 agent in PE environment #716

vchepkov opened this issue May 9, 2024 · 15 comments
Labels
enhancement New feature or request

Comments

@vchepkov
Copy link

vchepkov commented May 9, 2024

With latest PE adding support for Amazon Linux 2023 agents, could you, please, add support to the module?

@vchepkov vchepkov added the enhancement New feature or request label May 9, 2024
@vchepkov vchepkov changed the title add support for Amazon Linux 2023 add support for Amazon Linux 2023 agent in PE environment May 9, 2024
@vchepkov
Copy link
Author

vchepkov commented May 9, 2024

Maybe this is the only place where it needs to be fixed? it should have amazon prefix here

https://github.com/puppetlabs/puppetlabs-puppet_agent/blob/main/manifests/osfamily/redhat.pp#L41-L42

@vchepkov
Copy link
Author

vchepkov commented May 9, 2024

Also, for PE installation this description is incorrect
https://github.com/puppetlabs/puppetlabs-puppet_agent/blob/main/manifests/osfamily/redhat.pp#L161

@joshcooper
Copy link
Contributor

I think this was done already #692? What behavior are you expecting? What is the actual behavior?

@vchepkov
Copy link
Author

vchepkov commented May 9, 2024

@joshcooper , I posted comments above
PE repo starts with 'amazon' whereas module creates 'el-' prefix

@joshcooper
Copy link
Contributor

@vchepkov you're describing the solution, not the problem. Can you provide steps to reproduce the problem and what behavior you're expecting?

Also /cc @span786

@vchepkov
Copy link
Author

vchepkov commented May 9, 2024

@joshcooper , I might not understand your question, I apologize
Module generates repo file with the following content:

# head /etc/yum.repos.d/pc_repo.repo 
[pc_repo]
name=Puppet Labs puppet7 Repository
baseurl=https://puppet.example.com:8140/packages/2021.7.8/el-2023-x86_64

Since baseurl is incorrect, dnf fails:

 (/Stage[main]/Puppet_agent::Install/Package[puppet-agent]/ensure) change from '7.28.0-1.amazon2023' to '7.30.0' failed: Could not update: Execution of '/bin/yum -d 0 -e 0 -y update puppet-agent-7.30.0' returned 1:

@joshcooper
Copy link
Contributor

joshcooper commented May 9, 2024

@vchepkov ah thanks that makes sense. It looks like d5ad156 fixed one place but not the other:

      # Treat Amazon Linux just like Enterprise Linux
      $pe_repo_dir = ($facts['os']['name'] == 'Amazon') ? {
        true    => "el-${amz_el_version}-${facts['os']['architecture']}",
        default => $facts['platform_tag'],
      }

@span786 can you take a look?

@vchepkov
Copy link
Author

@joshcooper , @span786, considering that Amazon 2 march also was released, presumably that platform also needs to be fixed

@joshcooper
Copy link
Contributor

joshcooper commented Sep 24, 2024

@vchepkov I made some updates to this module for Amazon support in 75d15a6, but it hasn't been released yet. And we've begun shipping Amazon 2023 specific packages for both architectures, see https://yum.puppet.com/puppet8/amazon/2023 Could you provide a sample manifest to reproduce the problem you're seeing so that we can verify if more work is needed?

FWIW, the module should map the baseurl as follows for different combinations of Amazon OS versions and architectures:

['Amazon', 'el/6', '2017', 'x86_64'],
['Amazon', 'el/6', '2018', 'x86_64'],
['Amazon', 'el/7', '2', 'x86_64'],
['Amazon', 'amazon/2', '2', 'aarch64'],
['Amazon', 'amazon/2023', '2023', 'x86_64'],
['Amazon', 'amazon/2023', '2023', 'aarch64'],

@vchepkov
Copy link
Author

Just include puppet_agent on AL nodes managed by PE, nothing special.
I will test against HEAD and report back

@vchepkov
Copy link
Author

@joshcooper , I tested on 4 ec2 instances al2/al2023/x86_64/aarch64 - all updated clients to 8.8.1

Notice: /Stage[main]/Puppet_agent::Install/Package[puppet-agent]/ensure: ensure changed '7.32.1-1.amazon2023' to '8.8.1'
Notice: Stopping run after puppet-agent upgrade. Run puppet agent -t or apply your manifest again to finish the transaction.
Notice: Applied catalog in 16.42 seconds
Ignoring ffi-1.16.3 because its extensions are not built. Try: gem pristine ffi --version 1.16.3

Beside that weird message at the end, everything seems to be fine, thank you

@joshcooper
Copy link
Contributor

Thanks @vchepkov!! Do you get that message everytime the agent runs? Or just on upgrade?

@vchepkov
Copy link
Author

Only on upgrades from puppet 7 to puppet 8

@joshcooper
Copy link
Contributor

Thanks @vchepkov we'll get a release out

@joshcooper
Copy link
Contributor

Fixed in 610b6da

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants