2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-08-29 08:30:20 -04:00
|
|
|
package kubernetes
|
2022-03-25 05:42:27 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
k8s "k8s.io/api/core/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ConfigMaps represent a list of k8s ConfigMap.
|
|
|
|
type ConfigMaps []*k8s.ConfigMap
|
|
|
|
|
|
|
|
// Marshal marshals config maps into multiple YAML documents.
|
|
|
|
func (s ConfigMaps) Marshal() ([]byte, error) {
|
|
|
|
objects := make([]runtime.Object, len(s))
|
|
|
|
for i := range s {
|
|
|
|
objects[i] = s[i]
|
|
|
|
}
|
|
|
|
return MarshalK8SResourcesList(objects)
|
|
|
|
}
|