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>
23 lines
670 B
Go
23 lines
670 B
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
|
|
|
|
// Renderer renders cloud-init data.
|
|
type Renderer interface {
|
|
Render() ([]byte, error)
|
|
}
|