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

pubsys: update to AWS SDK Rust #2415

Merged
merged 1 commit into from Sep 23, 2022

Conversation

jpculp
Copy link
Member

@jpculp jpculp commented Sep 12, 2022

Issue number:

#1968

Description of changes:

Replaces rusoto with aws-sdk-for-rust in pubsys.

Testing done:

  • publish ami to us-west-2
  • publish multiple amis with chained assumed roles (2 different accounts, 3 regions)
  • grant ami access
  • revoke ami access
  • publish ssm parameters
  • promote ssm parameters

TUF testing done:
Thanks, @etungsten!

  • use KMS key when creating TUF repo
  • check TUF repo expirations
  • validate TUF repo
  • refresh TUF repo

Terms of contribution:

By submitting this pull request, I agree that this contribution is dual-licensed under the terms of both the Apache License, version 2.0, and the MIT license.

@jpculp
Copy link
Member Author

jpculp commented Sep 14, 2022

Fixed the result unwrapping issue while also improving how and where the profile gets loaded.

Copy link
Contributor

@stmcginnis stmcginnis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me - with the caveat that I am not very familiar with this code. But updated code looks logical, and maybe most importantly, all tests are passing.

Copy link
Contributor

@zmrow zmrow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As an aside, if you're not already doing so it'd probably be good to run down the entire set of pubsys commands in your own account, making sure that the grant/revoke and SSM params all work as expected. Those are super important.

tools/pubsys/src/aws/client.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/client.rs Outdated Show resolved Hide resolved
}
// Load a chained credential config if role is specified in aws.region.REGION.role.
let maybe_regional_role = aws.region.get(&region).and_then(|r| r.role.clone());
let config = if maybe_regional_role.is_some() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm confused about this let config... are we replacing the config we just built?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct, but I can rename it to make it more clear.

@jpculp
Copy link
Member Author

jpculp commented Sep 16, 2022

  • Fixed missing region from chained configuration.
  • Removed the extraneous else's.

Copy link
Contributor

@etungsten etungsten left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please also test cargo make check-repo-expirations, cargo make validate-repo, and cargo make refresh-repo?

You can find examples in the PR descriptions here:
#2303
#1575

tools/pubsys/src/aws/ami/mod.rs Outdated Show resolved Hide resolved
tools/pubsys/src/repo.rs Outdated Show resolved Hide resolved
tools/pubsys/src/main.rs Outdated Show resolved Hide resolved
tools/pubsys/src/main.rs Show resolved Hide resolved
tools/pubsys/src/aws/ssm/ssm.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/publish_ami/mod.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/publish_ami/mod.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/publish_ami/mod.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/client.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/client.rs Outdated Show resolved Hide resolved
@jpculp
Copy link
Member Author

jpculp commented Sep 19, 2022

  • Removed extraneous clones and references.
  • Set default log level for aws_config and aws_smithy to Warn.
  • Improved error handling and logging.

@etungsten
Copy link
Contributor

Tested check-repo-expirations:

$ cargo make  -e BUILDSYS_VARIANT=aws-k8s-1.23 -e BUILDSYS_ARCH=x86_64 check-repo-expirations
[cargo-make] INFO - cargo make 0.35.15
[cargo-make] INFO - Build File: Makefile.toml
[cargo-make] INFO - Task: check-repo-expirations
[cargo-make] INFO - Profile: development
[cargo-make] INFO - Running Task: setup
[cargo-make] INFO - Running Task: fetch-sources
[cargo-make] INFO - Running Task: tuftool
[cargo-make] INFO - Running Task: publish-setup-tools
[cargo-make] INFO - Running Task: publish-setup
19:01:24 [INFO] Found infra config at path: /home/ec2-user/bottlerocket/Infra.toml
[cargo-make] INFO - Running Task: setup
[cargo-make] INFO - Running Task: fetch-sources
[cargo-make] INFO - Running Task: publish-tools
[cargo-make] INFO - Running Task: check-repo-expirations
[2022-09-19T19:01:26Z INFO  pubsys_config] Found infra config at path: /home/ec2-user/bottlerocket/Infra.toml
[2022-09-19T19:01:26Z INFO  pubsys::repo::check_expirations] Loaded TUF repo:   file:///home/ec2-user/bottlerocket/build/repos/default/bottlerocket-1.9.2-deea371c/aws-k8s-1.23/x86_64
[2022-09-19T19:01:26Z INFO  pubsys::repo::check_expirations] Root expiration:   2023-09-18 18:58:32 UTC
[2022-09-19T19:01:26Z INFO  pubsys::repo::check_expirations] Snapshot expiration:       2022-10-03 19:01:12.156262570 UTC
[2022-09-19T19:01:26Z INFO  pubsys::repo::check_expirations] Targets expiration:        2022-10-03 19:01:12.156262570 UTC
[2022-09-19T19:01:26Z INFO  pubsys::repo::check_expirations] Timestamp expiration:      2022-09-26 19:01:12.156262570 UTC
[2022-09-19T19:01:26Z INFO  pubsys::repo::check_expirations] Looking for metadata expirations happening from now to 2022-09-22 19:01:26.973914183 UTC
[cargo-make] INFO - Build Done in 4.72 seconds.

Tested validate-repo:

$ cargo make  -e BUILDSYS_VARIANT=aws-k8s-1.23 -e BUILDSYS_ARCH=x86_64 validate-repo
[cargo-make] INFO - cargo make 0.35.15
[cargo-make] INFO - Build File: Makefile.toml
[cargo-make] INFO - Task: validate-repo
[cargo-make] INFO - Profile: development
[cargo-make] INFO - Running Task: setup
[cargo-make] INFO - Running Task: fetch-sources
[cargo-make] INFO - Running Task: tuftool
[cargo-make] INFO - Running Task: publish-setup-tools
[cargo-make] INFO - Running Task: publish-setup
19:01:45 [INFO] Found infra config at path: /home/ec2-user/bottlerocket/Infra.toml
[cargo-make] INFO - Running Task: setup
[cargo-make] INFO - Running Task: fetch-sources
[cargo-make] INFO - Running Task: publish-tools
[cargo-make] INFO - Running Task: validate-repo
[2022-09-19T19:01:47Z INFO  pubsys_config] Found infra config at path: /home/ec2-user/bottlerocket/Infra.toml
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Loaded TUF repo: file:///home/ec2-user/bottlerocket/build/repos/default/bottlerocket-1.9.2-deea371c/aws-k8s-1.23/x86_64
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: migrate_v1.10.0_dns-settings.lz4
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: bottlerocket-aws-k8s-1.23-x86_64-v1.9.2.img.lz4
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: manifest.json
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: bottlerocket-aws-k8s-1.23-x86_64-1.9.2-deea371c-root.ext4.lz4
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: bottlerocket-aws-k8s-1.23-x86_64-1.9.2-deea371c-boot.ext4.lz4
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: bottlerocket-aws-k8s-1.23-x86_64-1.9.2-deea371c.img.lz4
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: aws-k8s-1.23-x86_64-kmod-kit-v1.9.2.tar.xz
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: bottlerocket-aws-k8s-1.23-x86_64-1.9.2-deea371c-data.img.lz4
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: bottlerocket-aws-k8s-1.23-x86_64-v1.9.2-data.img.lz4
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: bottlerocket-aws-k8s-1.23-x86_64-1.9.2-deea371c-root.verity.lz4
[2022-09-19T19:01:47Z INFO  pubsys::repo::validate_repo] Downloading target: migrate_v1.10.0_dns-settings-metadata.lz4
[cargo-make] INFO - Build Done in 4.25 seconds.

Tested refresh-repo with KMS key:

$ cargo make  -e BUILDSYS_VARIANT=aws-k8s-1.23 -e BUILDSYS_ARCH=x86_64 refresh-repo        
[cargo-make] INFO - cargo make 0.35.15
[cargo-make] INFO - Build File: Makefile.toml
[cargo-make] INFO - Task: refresh-repo
[cargo-make] INFO - Profile: development
[cargo-make] INFO - Running Task: setup
[cargo-make] INFO - Running Task: fetch-sources
[cargo-make] INFO - Running Task: tuftool
[cargo-make] INFO - Running Task: publish-setup-tools
[cargo-make] INFO - Running Task: publish-setup
19:05:28 [INFO] Found infra config at path: /home/ec2-user/bottlerocket/Infra.toml
[cargo-make] INFO - Running Task: publish-tools
[cargo-make] INFO - Running Task: refresh-repo
[2022-09-19T19:05:28Z INFO  pubsys_config] Found infra config at path: /home/ec2-user/bottlerocket/Infra.toml
[2022-09-19T19:05:28Z INFO  pubsys::repo::refresh_repo] Using repo expiration policy from path: /home/ec2-user/bottlerocket/tools/pubsys/policies/repo-expiration/2w-2w-1w.toml
[2022-09-19T19:05:28Z INFO  pubsys::repo::refresh_repo] Loaded TUF repo: file:///home/ec2-user/bottlerocket/build/repos/default/bottlerocket-1.9.2-deea371c-bak/aws-k8s-1.23/x86_64
[2022-09-19T19:05:28Z INFO  pubsys::repo] Setting non-root metadata expiration times:
        snapshot:  2022-10-03 19:05:28.522312124 UTC
        targets:   2022-10-03 19:05:28.522312124 UTC
        timestamp: 2022-09-26 19:05:28.522312124 UTC
[2022-09-19T19:05:28Z INFO  pubsys::repo::refresh_repo] Writing repo metadata to: /home/ec2-user/bottlerocket/build/repos/default/bottlerocket-1.9.2-deea371c/aws-k8s-1.23/x86_64
[cargo-make] INFO - Build Done in 2.40 seconds.

@jpculp jpculp marked this pull request as ready for review September 19, 2022 19:58
tools/deny.toml Show resolved Hide resolved
tools/pubsys/src/aws/ami/wait.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/client.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/client.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/client.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/promote_ssm/mod.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/ami/wait.rs Outdated Show resolved Hide resolved
tools/pubsys/src/repo.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/publish_ami/mod.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/publish_ami/mod.rs Show resolved Hide resolved
Comment on lines +76 to +85
.set_device_name(Some(ROOT_DEVICE_NAME.to_string()))
.set_ebs(Some(
EbsBlockDevice::builder()
.set_delete_on_termination(Some(true))
.set_snapshot_id(Some(root_snapshot.clone()))
.set_volume_type(Some(VolumeType::from(VOLUME_TYPE)))
.set_volume_size(ami_args.root_volume_size)
.build(),
Copy link
Contributor

@ecpullen ecpullen Sep 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The sdk allows not including Some if you set the values without set_. (This happens in a lot of places so might not be in the scope of this pr)

Suggested change
.set_device_name(Some(ROOT_DEVICE_NAME.to_string()))
.set_ebs(Some(
EbsBlockDevice::builder()
.set_delete_on_termination(Some(true))
.set_snapshot_id(Some(root_snapshot.clone()))
.set_volume_type(Some(VolumeType::from(VOLUME_TYPE)))
.set_volume_size(ami_args.root_volume_size)
.build(),
.device_name(ROOT_DEVICE_NAME.to_string())
.ebs(EbsBlockDevice::builder()
.delete_on_termination(true)
.snapshot_id(root_snapshot.clone())
.volume_type(VolumeType::from(VOLUME_TYPE))
.set_volume_size(ami_args.root_volume_size)
.build(),

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This definitely works, but my understanding was the setters are more idiomatic for the SDK.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where did you see the perspective on idiomatic use? Not disagreeing, and it's not a blocker here in any case, but for me the code that @ecpullen wrote seems preferable since it's fewer characters and we don't have to wrap everything in an Option.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was just an impression we got from the SDK team that the non-setter way might eventually be deprecated.

@jpculp
Copy link
Member Author

jpculp commented Sep 20, 2022

  • Brought back stronger-typed regions and region_from_string().
  • Renamed aws: AwsConfig to pubsys_aws_config: PubsysAwsConfig to reduce confusion.
  • Kept arch as a stronger-type throughout.
  • Replaced ImageState ensure statement with match.
  • Replaced thread::spawn with tokio::runtime::Runtime::new().

Comment on lines 13 to 14
fn region_from_string(name: &str) -> Result<Region> {
Ok(Region::new(name.to_owned()))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this is infallible now we should probably just return a Region. However, I like it this way for the purposes of the SDK migration, to minimize the diff. Maybe add a FIXME to rework later.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a pretty quick change. Rather than a FIXME, should I just make it the final change once we think this PR hits all the edge cases?

tools/pubsys/src/aws/client.rs Outdated Show resolved Hide resolved
tools/pubsys/src/aws/client.rs Outdated Show resolved Hide resolved
@jpculp
Copy link
Member Author

jpculp commented Sep 21, 2022

  • Changed credentials logic will run even if only a single role is specified.
  • Credential expirations can now be None.
  • Removed endpoints.

Copy link
Contributor

@zmrow zmrow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🦺

@jpculp
Copy link
Member Author

jpculp commented Sep 22, 2022

  • Rewrote client.rs to return providers instead of credentials.
  • Removed returning unneccessary result-types (and their associated error contexts).

@jpculp
Copy link
Member Author

jpculp commented Sep 22, 2022

Suppressed noisy [2022-09-22T20:01:26Z INFO tracing::span] assume_role; log.

Copy link
Contributor

@zmrow zmrow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔬

@jpculp jpculp merged commit 0938f2b into bottlerocket-os:develop Sep 23, 2022
@jpculp jpculp deleted the aws-sdk-rust-pubsys branch September 23, 2022 00:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants