mirror of
https://github.com/outbackdingo/cluster-api-provider-proxmox.git
synced 2026-01-27 10:18:38 +00:00
Co-authored-by: Felix Wischke <felix.wischke@ionos.com> Co-authored-by: Jonas Bender <90411737+jonas-be@users.noreply.github.com> Co-authored-by: Ludwig Bedacht <132355999+lubedacht@users.noreply.github.com> Co-authored-by: Mario Valderrama <15158349+avorima@users.noreply.github.com> Co-authored-by: Mohamed Chiheb Ben jemaa <mohamed-chiheb.ben-jemaa@ionos.com> Co-authored-by: Vic Kerr <318870+wikkyk@users.noreply.github.com>
38 lines
1.0 KiB
Go
38 lines
1.0 KiB
Go
/*
|
|
Copyright 2023 IONOS Cloud.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package cloudinit
|
|
|
|
import (
|
|
"bytes"
|
|
"text/template"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func render(name string, tpl string, data BaseCloudInitData) ([]byte, error) {
|
|
mt, err := template.New(name).Parse(tpl)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to parse %s template", name)
|
|
}
|
|
|
|
buffer := &bytes.Buffer{}
|
|
if err = mt.Execute(buffer, data); err != nil {
|
|
return nil, errors.Wrapf(err, "failed to render %s", name)
|
|
}
|
|
return buffer.Bytes(), nil
|
|
}
|