Ryan McLean
Ryan McLean
I thought about the exporter but it would have to be 'smart' because it would need to handle types such has size in MB etc. The self conversion i liked...
https://github.com/cnvogelg/amitools/pull/139
I have an acer aspire one running arch with the above resolution, the issue is actually width not height for me as the right hand side of the UI is...
I'd love this feature really useful for reverse engineering a pcb.. Though I had an idea that might be nicer as a starting point: Use YAML (or JSON) to declare...
https://github.com/helm/chartmuseum/pull/464 Does this maybe help?
Honestly not 100% why it was done (previous team did this piece of code prior to leaving) so i've inherited it. From the descriptions it looks like (again i'm not...
@till So i never actually stop the `.path` it's requires the `ConditionPathExists=!/etc/kubernetes/kubelet.conf` to be met to run.. on the old nodes it shows something like 'condition not met' in it's...
``` - name: kubelet-prebootstrap.service enable: true contents: | [Unit] Description=Temp instance of kubelet, just so that starts static pods Wants=network-online.target prefetch-docker-images.service docker.service unpack-kubeadm-assets.service After=network-online.target prefetch-docker-images.service docker.service unpack-kubeadm-assets.service # If kubelet...
Work around: common.auto.tfvars.json ``` import os def pretf_variables(): BACKEND = os.getenv('TFENV', "dev") # ENV Specific print(f"Loading Vars: {BACKEND}") if BACKEND == "dev": yield { "environment": "dev", } elif BACKEND ==...
@raymondbutcher you cant use `-var-file=` with `init` The issue is that pretf builds all the json 1st even though in the init stage the only relevant part is the backend.