Simon Perkins

Results 31 comments of Simon Perkins

The following reproduces this error. ```python import pulumi import pulumi_eks as eks import pulumi_kubernetes as k8s CLUSTER_NAME = "my-cluster" # Create an EKS cluster with the default configuration. cluster =...

Downgrading to use `k8s.helm.v2` results in the same error: ```bash ValueError: Attempted to register resource kubernetes:core/v1:ServiceAccount with a provider for 'Calling __str__ on an Output[T] is not supported. ```

If gcc 12.2 is sufficiently recent for cross-compilation, it may be worth considering changing the CIBW manylinux containers from `manylinux2014` to `manylinux_2_28`. Additionally, `Centos 7`, on which `manylinux2014` is based,...

> Yes we were planning to move to manylinux_2_28 anyway for C++20 support. But is there a manylinux_2_28 cross-compilation image with gcc 12? It looks like cross-compiling aarch64 is still...

Thanks, have merged master into #119. In terms of retry functionality, the following looks like a suitable reference implementation: - https://github.com/aws/aws-sdk-go/blob/4886ffca0e4f8f35e8abad033e87f0aa305b33cf/aws/client/default_retryer.go#L16 - https://github.com/aws/aws-sdk-go/blob/4886ffca0e4f8f35e8abad033e87f0aa305b33cf/aws/client/default_retryer.go#L78-L123 I might have time to look at...

Hello, just dropping a note to say that my next window of opportunity for s3 work will be after March 2024,

> There was, at least, one issue related to auth on S3. I think that we may want to investigate using the AWS sdk (https://github.com/aws/aws-sdk-cpp/tree/main) for, at a minimum, auth....

If you think a videocon would be useful my contact details are here https://github.com/ratt-ru/arcae/blob/8c323116105d811f9718f258a09b52b68e7a8150/pyproject.toml#L5.

So a first order strategy here might be: - Replace the current AWS S3 Auth code with a [Aws::Auth::DefaultCredentialProviderChain](https://sdk.amazonaws.com/cpp/api/LATEST/aws-cpp-sdk-core/html/class_aws_1_1_auth_1_1_default_a_w_s_credentials_provider_chain.html). and in `S3RequestBuilder::BuildRequest`: - Create a dummy [Aws::Http::StandardHttpRequest](https://sdk.amazonaws.com/cpp/api/LATEST/aws-cpp-sdk-core/html/class_aws_1_1_http_1_1_standard_1_1_standard_http_request.html). - `Aws::String` objects...

Still WIP, none of the existing codepaths have been touched. Its still in prototype form, but its at the point where I'm confident that some variant of `S3RequesBuilder` that uses...