Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 1.33 KB

faq.md

File metadata and controls

15 lines (10 loc) · 1.33 KB

Azure Service Operator FAQ

This page provides help with the most common questions about Azure Service Operators.

Do I have to order the creation of resources through the operator? For instance, do I need to first create the EventHub namespace before creating the EventHub?

No, you can issue the creation of all resources at the same time. The operator will take care of waiting and requeuing the requests until the parent resource is ready and all resources will eventually be ready.

If I need to add a new field to the spec of an existing CRD, do I need to increment the version of the CRD?

Yes, we follow semantic versioning to preserve backward compatibility. Please follow Kubebuilder's versioning mechanism for this.

Is there a guide that talks about how to develop an operator for a new Azure service?

There is a step-by-step guide that walks you through this process.

Are there any sample apps that demonstrate how to utilize the Azure Service Operators?

We have some samples that illustrate how to use Azure Service Operators along with your application here. The samples also show how to utilize post-deployment-secrets from the Azure Service Operator.