Skip to content
mutate.go 866 B
Newer Older
Timothee Gosselin's avatar
Timothee Gosselin committed
/*

Timothee Gosselin's avatar
Timothee Gosselin committed
Licensed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (the "License");
Timothee Gosselin's avatar
Timothee Gosselin committed
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

Timothee Gosselin's avatar
Timothee Gosselin committed
    https://www.gnu.org/licenses/agpl-3.0.html
Timothee Gosselin's avatar
Timothee Gosselin committed

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 secret

import (
	corev1 "k8s.io/api/core/v1"
Timothee Gosselin's avatar
Timothee Gosselin committed
	meta "k8s.libre.sh/controller-utils/meta"
Timothee Gosselin's avatar
Timothee Gosselin committed
)

type Mutate interface {
Timothee Gosselin's avatar
Timothee Gosselin committed
	GetSecretData() map[string][]byte
Timothee Gosselin's avatar
Timothee Gosselin committed
}

func MutateSecret(r Mutate, obj *corev1.Secret, m meta.Meta) error {

	obj.Data = r.GetSecretData()
Timothee Gosselin's avatar
Timothee Gosselin committed
	// TOD TO FIX
Timothee Gosselin's avatar
Timothee Gosselin committed
	meta.MutateMeta(m, obj)

	return nil
}