Results 6 comments of Tomas V.

From the manual to mkdtemp: If dir is specified, the file will be created in that directory; otherwise, a default directory is used. The default directory is chosen from a...

It's a one-liner, maybe two: In time_support.py, change seconds = datetime_obj.utcoffset().total_seconds() to td = datetime_obj.utcoffset() seconds = (td.microseconds + (td.seconds + td.days \* 24 \* 3600) \* 10**6) / 10**6...

No, the change fixes uploads on Python 2.6 which doesn't have the total_seconds() function. I'm concerned if it doesn't lose precision as I don't understand that comment from the manual...

OK, rebased on your repository and submitted as pull request.

@JedMeister I think you misunderstood each other. As I read it, the request was for Kubernetes in TKL, not TKL in Kubernetes. In fact, I think it is a good...

The resizing of the partition is done by installing the "cloud-initramfs-growroot" package. Resizing of the filesystem is already covered by inithooks: /usr/lib/inithooks/firstboot.d/26ec2-resizerootfs Shouldn't it be moved to everyboot.d? Alternatively, cloud-init...