-
Notifications
You must be signed in to change notification settings - Fork 4
Support for DNS, only create instances that do not exist, VPC support, placement groups support #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We need linode-api4 5.29 to assign firewalls to newly created linodes.
We can assign a firewall to newly created linodes if the user sets a firewall_label in `vars`
Add the firewall_label variable to vars that allows setting a firewall when deploying linodes
Use the rdns name for the linode rather than the IP when doing ssh since this allows corporate DNS servers to reroute traffic through their own proxies.
If a `domain_name` is configured in `vars`, then we should also add these hosts to DNS. Before adding, we will remove any stale records. The hostname in `kafka_data` is used to generate self signed certificates. If we're using a FQDN name to connect to kafka, then the certificate needs to have this FQDN as well.
…nce.label for everything else
This commit checks which kafka instances have already been created before trying to create new ones. It will only create instances that do not already exist. instance_list gets us information about all instances in a single call which is more efficient than looping through instance_info just to check if an instance has been created.
…iously created cluster id
Use VPC instead of private IP A VPC allows us to restrict connectivity between our cluster hosts and disallow connections from other hosts on the linode private network.
nmelehan-akamai
commented
May 29, 2025
This was referenced Jun 10, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds a couple commits to #9