Skip to content

Conversation

@Reddyshruti26
Copy link
Contributor

@Reddyshruti26 Reddyshruti26 commented May 6, 2025

Description
This PR enhances the retry logic of the Azure SDK to allow customers to configure it using an environment variable specified in the manifest file, depending on their workload. Currently, this serves as a short-term solution for our users for both public and private DNS. A long-term fix is planned and will be implemented in the near future. The relevant documentation has been updated accordingly to reflect this change.

Fixes #4839

Checklist

  • Unit tests updated
  • End user documentation updated

@linux-foundation-easycla
Copy link

linux-foundation-easycla bot commented May 6, 2025

CLA Signed

The committers listed above are authorized under a signed CLA.

@k8s-ci-robot k8s-ci-robot added the cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. label May 6, 2025
@k8s-ci-robot
Copy link
Contributor

Welcome @Reddyshruti26!

It looks like this is your first PR to kubernetes-sigs/external-dns 🎉. Please refer to our pull request process documentation to help your PR have a smooth ride to approval.

You will be prompted by a bot to use commands during the review process. Do not be afraid to follow the prompts! It is okay to experiment. Here is the bot commands documentation.

You can also check if kubernetes-sigs/external-dns has its own contribution guidelines.

You may want to refer to our testing guide if you run into trouble with your tests not passing.

If you are having difficulty getting your pull request seen, please follow the recommended escalation practices. Also, for tips and tricks in the contribution process you may want to read the Kubernetes contributor cheat sheet. We want to make sure your contribution gets all the attention it needs!

Thank you, and welcome to Kubernetes. 😃

@k8s-ci-robot k8s-ci-robot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label May 6, 2025
@k8s-ci-robot
Copy link
Contributor

Hi @Reddyshruti26. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label May 6, 2025
@mloiseleur mloiseleur changed the title fix(azure): Enhance retry logic using azure SDK fix(azure): enhance retry logic using azure SDK May 7, 2025
@mloiseleur
Copy link
Collaborator

@Reddyshruti26 You need to sign the CLA before we can review this PR.

@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. and removed cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. labels May 8, 2025
@mloiseleur
Copy link
Collaborator

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels May 8, 2025
Copy link
Collaborator

@mloiseleur mloiseleur left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All the parameters in external-dns are configured with CLI args, starting with providers name.
image

Would you please follow this convention on this new parameter ?

@Reddyshruti26
Copy link
Contributor Author

Reddyshruti26 commented May 8, 2025

All the parameters in external-dns are configured with CLI args, starting with providers name. image

Would you please follow this convention on this new parameter ?

Hi @mloiseleur, Could you please clarify if the AZURE_SDK_MAX_RETRIES should be configured as a CLI argument instead of an environment variable?

@mloiseleur
Copy link
Collaborator

Hi @mloiseleur, Could you please clarify if the AZURE_SDK_MAX_RETRIES should be configured as a CLI argument instead of an environment variable?

Yes, that's my point.

@mloiseleur
Copy link
Collaborator

To be more precise, all CLI flags can be used as env variable.

See --help on azure:

  --azure-config-file="/etc/kubernetes/azure.json"  
                                 When using the Azure provider,
                                 specify the Azure configuration file
                                 (required when --provider=azure)
                                 ($EXTERNAL_DNS_AZURE_CONFIG_FILE)
  --azure-resource-group=""      When using the Azure provider, override
                                 the Azure resource group to use (optional)
                                 ($EXTERNAL_DNS_AZURE_RESOURCE_GROUP)
  --azure-subscription-id=""     When using the Azure provider, override
                                 the Azure subscription to use (optional)
                                 ($EXTERNAL_DNS_AZURE_SUBSCRIPTION_ID)
  --azure-user-assigned-identity-client-id=""  
                                 When using the Azure provider,
                                 override the client id of user assigned
                                 identity in config file (optional)
                                 ($EXTERNAL_DNS_AZURE_USER_ASSIGNED_IDENTITY_CLIENT_ID)
  --azure-zones-cache-duration=0s  
                                 When using the Azure provider, set the
                                 zones list cache TTL (0s to disable).
                                 ($EXTERNAL_DNS_AZURE_ZONES_CACHE_DURATION)

@Reddyshruti26
Copy link
Contributor Author

To be more precise, all CLI flags can be used as env variable.

See --help on azure:

  --azure-config-file="/etc/kubernetes/azure.json"  
                                 When using the Azure provider,
                                 specify the Azure configuration file
                                 (required when --provider=azure)
                                 ($EXTERNAL_DNS_AZURE_CONFIG_FILE)
  --azure-resource-group=""      When using the Azure provider, override
                                 the Azure resource group to use (optional)
                                 ($EXTERNAL_DNS_AZURE_RESOURCE_GROUP)
  --azure-subscription-id=""     When using the Azure provider, override
                                 the Azure subscription to use (optional)
                                 ($EXTERNAL_DNS_AZURE_SUBSCRIPTION_ID)
  --azure-user-assigned-identity-client-id=""  
                                 When using the Azure provider,
                                 override the client id of user assigned
                                 identity in config file (optional)
                                 ($EXTERNAL_DNS_AZURE_USER_ASSIGNED_IDENTITY_CLIENT_ID)
  --azure-zones-cache-duration=0s  
                                 When using the Azure provider, set the
                                 zones list cache TTL (0s to disable).
                                 ($EXTERNAL_DNS_AZURE_ZONES_CACHE_DURATION)

Hi @mloiseleur, I am assuming the implementation of this is already in place and I just have to implement the new flag as requested earlier. Or, do I have to implement the new flag and corresponding env variable?

@mloiseleur
Copy link
Collaborator

@sfiguemsft Any comment ?

@mloiseleur
Copy link
Collaborator

LGTM. It needs a 2nd review.
/approve

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label May 15, 2025
@sfiguemsft
Copy link

@sfiguemsft Any comment ?

Approved - please let me know if you need any further input.

@ivankatliarchuk
Copy link
Member

/label tide/merge-method-squash

@k8s-ci-robot k8s-ci-robot added the tide/merge-method-squash Denotes a PR that should be squashed by tide when it merges. label May 16, 2025
Copy link
Member

@ivankatliarchuk ivankatliarchuk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label May 17, 2025
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: ivankatliarchuk, mloiseleur

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot merged commit 7b9d8d9 into kubernetes-sigs:master May 17, 2025
13 checks passed
}

// Helper function to parse max retries value
func parseMaxRetries(value string, defaultValue int) (int, error) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

defaultValue is not used in this function.
Is this expected ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a redundant parameter that might have been missed during code clean-up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. lgtm "Looks good to me", indicates that a PR is ready to be merged. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. tide/merge-method-squash Denotes a PR that should be squashed by tide when it merges.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Support for Throttling limits on Azure Private DNS Zones

7 participants