Valeri Haralanov

Results 11 comments of Valeri Haralanov

I experienced a similar problem with this as well. Creating `Credentials` from an auth code is fine, but in my case I wanted to create them directly with the refresh...

Also, I just got another idea. We should probably rewrite the dead workers loop to process all dead workers in a single `SCAN` iteration. Right now we are scanning the...

Turns out `replicate_commands` may or may not be available depending on the redis version, so I added some checks to account for that. >We should probably rewrite the dead workers...

SVG support is kind of important because right now `LImageOverlay` uses `` and afaik that doesn't allow CSS styling. I used part of #684 in my own code as a...

I'd really like to see this merged! I'm in the process of writing TF manifests for all my stuff on Vultr, and container registry is one of the first things...

I think I'm running into this right now. I have 3 ingress resources, which define the following rules respectively: ```yaml apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: ingress-foo-api annotations: nginx.ingress.kubernetes.io/rewrite-target: /$2...

After thinking about this some more, I think this actually shows another issue: the catch-all route is not placed in the correct place. In my case, the "redundant" catch-all route...

I think I just ran into this issue. First, I tried the obvious thing: ```sh terraform import vultr_kuberenets.my_cluster ``` This was successful, but then after I ran `terraform plan`, it...

This should be possible using something like ```python3 Schema( And( { 'foo': [str], 'bar': [str] }, lambda d: len(d['foo']) == len(d['bar']) ) ) ```

I just bumped into this issue today, trying to run via python 3.10. I tried using the branch from #255 instead and it seems to be working!