04:25:26 ok this is strange 04:26:14 gmake world keeps failing when trying to update the javascriptlint module for ur-agent 04:26:32 specifically it's timing out connecting to github 04:26:35 for _just_ that repo 04:26:42 and it's been doing it for > 24 hours now 14:54:04 Wow, I see jperkin also put the tailscale and wireguard packages into the tools package lists. Nice! 14:57:01 yeh I figured they would be useful in the GZ 14:57:19 definitely 15:03:43 ooh, and I see bootstrap tarballs... 15:04:06 I'll try to find some time to test those in the next day or two. 21:48:39 Hey all, does anyone here know if Triton Cloudapi provides functionality to pass a cloud config json string to cloud-init? Can I pass a cloud-config(mainly network config) in json to cloud-init in a way similar to the customer_metadata property in a SmartOS json VM file which gets imported by vmadm? 21:49:16 I would like to provide cloud-init with this kind of information: https://pastebin.com/JMVZu5zd 22:07:06 TheTim0Nat0r: Yes, you can. Specify it as the user-script. 22:07:38 For Linux OS instances, if the user-script is a cloud-init script it will be passed verbatim to cloud-init. If it's anything else, it'll be executed with bash during boot. 22:07:48 I don't think that'll override the network settings. 22:07:58 Or at least, doing what the API isn't doing won't end well. 22:08:42 Yeah, the network settings are controlled by the hypervisor. Adding incompatible networking directives to the cloud-config will render the instance unreachable. 22:09:10 TheTim0Nat0r: What is it about the network config you want to change? 23:28:17 bahamat: I would like to bypass the incapability of Triton SDC to provision VMs and containers with ipv6 addresses and routing by communicating directly with cloud/init 23:31:38 I need to be able to provide each cm and container with a static ipv6 address and gateway through an api 23:32:15 Well that's not going to work for you right off. 23:32:37 SmartOS has protections in it to prevent instances from using IPs other than the ones they're directly assigned. 23:33:32 But, I do have this: https://github.com/TritonDataCenter/triton-cloudapi-plugins 23:34:05 One of the plugins in that repo will allow certain trusted users to automatically enable allow_ip_spoofing, which will let you bring up v6 addresses in the guest. 23:41:16 Okay, so if I understand well, I can not use the current apis to pass a config string to cloud/init on creatiOn of a vm to have cloud/init configure a static ipv6 address and gateway in that vm 23:45:41 Not alone, no. 23:45:59 Instances need to allow_ip_spoofing to be able to do that. 23:50:11 TheTim0Nat0r: Sounds like you're using Triton on-prem? It might be good to get in touch with us. 23:53:07 TheTim0Nat0r: slaac doesn't work ? 23:54:09 Even with slaac you need to allow_ip_spoofing 23:55:43 I mean the question is kind of if just using slaac (which does give a predicable ipv6 at least) would be enough. that only needs allow_ip_spoofing for bhyve/kvm guests 23:56:24 (and yes, it would be nice if it didn't)