Julian Tölle

Results 299 comments of Julian Tölle

You could use label selectors on the firewall to automatically apply it to every node in the cluster. CAPH adds a label `caph-cluster-$CLUSTER_NAME=owned` to every node it creates. Its also...

There is also going to be issues with the cloud-controller-manager, which relies on the assumption that `hostname == name of server in API` to set the `Node.Spec.ProviderID`. --- I am...

@jooola is on vacation this week, but will be back on Monday. @varuzam maybe the [`check_mode` can help you there. You can run the `hetzner.hcloud.server_network` in check mode first, to...

These PRs add basic support for Hetzner (3rd checkbox in the list above): - https://github.com/flatcar/bootengine/pull/94 - https://github.com/flatcar/init/pull/118 - https://github.com/flatcar/scripts/pull/1880 (_Disclaimer_: This was done because of personal interest, not in my...

With the above PRs merged, to quote @tormath1 in chat: > According to the release planning, we should get Hetzner images for the Alpha and Beta in the next release....

Hey @hegerdes, this is not easily possible with the current API, because the list of applied firewalls on the server does not specify if its directly attached or because of...

Hey @spham can you post the exact error message you get? What is the content of your playbook?

This is the only error I saw in your logs: ``` ╷ │ Error: Empty Summary: This is always a bug in the provider and should be reported to the...

Hey @DravenJohnson, the available server types are available through the `Datacenter` API endpoint (`Location Server Types`): https://hcloud-python.readthedocs.io/en/stable/api.clients.datacenters.html#hcloud.datacenters.domain.DatacenterServerTypes https://docs.hetzner.cloud/#datacenters-get-all-datacenters Some untested pseudo-code: ```python server_type = client.server_types.get_by_name('cx21') datacenter = random.choice( [ dc...

This module currently only supports reading the Trace Segment from incoming request headers. Looking at the code for `aws-xray-sdk-node`, it seems that in a Lambda Environment, the X-Ray Trace ID...