Skip to content

Commit

Permalink
Merge pull request openstack-k8s-operators#889 from stuggi/export_svc…
Browse files Browse the repository at this point in the history
…_domain

Use svc fqdn for ctlplane export
  • Loading branch information
openshift-merge-robot committed Aug 3, 2023
2 parents 69a1bff + cebf3fe commit 906f3e9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions controllers/openstackconfiggenerator_controller.go
Expand Up @@ -298,8 +298,9 @@ func (r *OpenStackConfigGeneratorReconciler) Reconcile(ctx context.Context, req
}
}

svcDomain := "." + instance.Namespace + ".svc"
templateParameters["TripleoDeployFiles"] = tripleoDeployFiles
templateParameters["HeatServiceName"] = "heat-" + instance.Name + "." + instance.Namespace + ".svc"
templateParameters["HeatServiceName"] = "heat-" + instance.Name + svcDomain

//
// openstackconfig-script CM
Expand Down Expand Up @@ -511,7 +512,7 @@ func (r *OpenStackConfigGeneratorReconciler) Reconcile(ctx context.Context, req
return ctrl.Result{RequeueAfter: time.Second * 10}, nil
}
// obtain the cltplaneExports from Heat
exports, err = openstackconfiggenerator.CtlplaneExports("heat-"+instance.Name, r.Log)
exports, err = openstackconfiggenerator.CtlplaneExports("heat-"+instance.Name+svcDomain, r.Log)
if err != nil && !k8s_errors.IsNotFound(err) {
cond.Message = err.Error()
cond.Reason = shared.ConfigGeneratorCondReasonExportFailed
Expand Down

0 comments on commit 906f3e9

Please sign in to comment.