Brad Davidson

Results 1132 comments of Brad Davidson

I'm passable with Java, although certainly not as handy with it as other languages... but I'd be glad to take a whack at it if you're willing to help with...

The PR I just linked would make the CRD manifest available as a GitHub release artifact. This is preferred over having it checked in to the repo, as it is...

I am unable to replicate this with `rancher/system-upgrade-controller:v0.10.0-dev.2` I mirrored the library/busybox image to a local registry with a very long (97 character) name, and the resulting Job spec is...

```console brandond@dev01:~/suc-test$ skopeo sync --src docker --dest docker docker.io/library/busybox:1.35.0-uclibc local.registry.k3s.khaus/$(openssl rand -hex 16)/$(openssl rand -hex 16)/$(openssl rand -hex 16) INFO[0000] Tag presence check imagename="docker.io/library/busybox:1.35.0-uclibc" tagged=true INFO[0000] Copying image ref 1/1...

No, I was **not** able to reproduce any sort of image name truncation. There does appear to be a different issue that causes the initial run of the controller to...

@moospit @webratz Here's what works for me: ```python def print_chain(context, hostname): print('Connecting to {0}'.format(hostname)) sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock = SSL.Connection(context=context, socket=sock) sock.settimeout(5) sock.connect((hostname, 443)) sock.setblocking(1) sock.do_handshake() for cert in...

I'm watching this one as well, hoping to use this with k3s running on a dedicated data plane interface separate from my management network. I don't see why it should...

Alright, I'll take a look at that. It looks like in your project rather than writing a whole loader you're just importing the scratchabit module and calling it on blobs...

pynamodb uses botocore under the hood, which should honor environment variables like AWS_DEFAULT_PROFILE. Have you tried something like: ```bash AWS_DEFAULT_PROFILE=alt-profile python my-pynamodb-code.py ```

@use-sparingly yeah that would be nice. The model Meta has a `connection_cls` property, but this (counterintuitively) is used to look up the requests session class, NOT the botocore session. It...