landorg
landorg
Hi :) Could you please explain your workaround in a bit more detail @UnstoppableMango ? I tried to do this: ```python talos_cluster_secrets.machine_secrets.apply(lambda s: print(s.secrets.bootstrap_token)) talos_cluster_secrets.machine_secrets.apply(lambda ms: talos.machine.get_configuration_output( machine_type="controlplane", talos_version=talos_version, cluster_name=name,...
Thanks @UnstoppableMango. Mhm true. Like this it's working: ```python ... machine_secrets=talos_cluster_secrets.machine_secrets.apply( lambda ms: { "certs": { "k8sAggregator": ms.certs.k8s_aggregator, "os": ms.certs.os, "etcd": ms.certs.etcd, "k8s": ms.certs.k8s, "k8sServiceaccount": ms.certs.k8s_serviceaccount, }, "secrets": { "bootstrapToken":...
Can this be done in python? Unfortunately my python / ts isn't sufficient to do it on my own.