Robert Ayrapetyan

Results 49 comments of Robert Ayrapetyan

Should be fixed by: https://github.com/strizhechenko/netutils-linux/pull/228

Should be fixed by: https://github.com/strizhechenko/netutils-linux/pull/228

Thanks Nabeel, I might be missing something, but here is how my resource in defined currently: ``` resource "helm_release" "k8s_ecr_login_renew" { repository = "https://nabsul.github.io/helm" chart = "k8s-ecr-login-renew" name = "k8s-ecr-login-renew"...

@nabsul Another useful feature would be running this job once right after creation. I have to do this manually (and I'm sure everyone has to do this while running cluster...

Sure! For AWS ECR, account id and region are two necessary pieces: {account_id}.dkr.ecr.{region}.amazonaws.com The only workaround is to specify "registries" explicitly (as I did above). Will create a separate issue...

I agree that using `registries` is more flexible and covers all possible scenarios (with a single and multiple registries). But in most majority of cases, only one ECR repo is...

How to perform similar to above for a list of colors, e.g.: ``` @dataclass class Thing: color: list[Color] = field(default=Color.RED, metadata={"by_value": True}) ``` https://github.com/lovasoa/marshmallow_dataclass/issues/255

Is there any other workaround than putting: ``` count = var.create_istio_vs == "true" ? 1 : 0 ``` into every manifest and run terraform apply twice like this: ``` terraform...

For me: ``` tracer.start_span("child", context=ctx) ``` construction is not equal to using: ``` with tracer.start_as_current_span: ``` The difference is - in tempo logs automated and manual traces appear as separate...

In the described scenario, I believe CRIU doesn't need to be concerned about preserving GPU state and/or drivers. Its primary task should be to attach /dev/dri devices during restoration and...