I am trying my hands on creating my own kubernetes operator by following this link. In the Reconcile function, I need to create multiple Deployments and each will vary in some attributes (like name for e.g.) and the configuration is huge. Instead of creating the deployment by using appsv1.Deployment and creating each attributes within it (like below code), is there a way wherein I can provide a yaml template file and read this file to obtain the appsv1.Deployment object?
	dep := &appsv1.Deployment{
	    ObjectMeta: metav1.ObjectMeta{
		    Name:      customName,
		    Namespace: m.Namespace,
	    },
	    Spec: appsv1.DeploymentSpec{
		    Strategy: appsv1.DeploymentStrategy{
			    Type: "RollingUpdate",
		    },
        ... and so onInstead of above, can something like below possible with some handy util functions?
dep := utils.parseYaml(deploymentYamlFile)Yes, you can have your Deployment in a yaml file and read it in code.
Given this file structure:
example.go
manifests/deployment.yamlYou would have something like this in example.go:
import (
    "io/ioutil"
    appsv1 "k8s.io/api/apps/v1"
    "sigs.k8s.io/yaml"
)
func example() {
    var bs []byte
    {
        bs, err = ioutil.ReadFile("manifests/deployment.yaml")
        if err != nil {
            // handle err
        }
    }
    var deployment appsv1.Deployment
    err = yaml.Unmarshal(bs, &deployment)
    if err != nil {
        // handle err
    }
    // now you have your deployment load into `deployment` var
}