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.
There is a step-by-step guide that walks you through this process.
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.