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

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 secret

import (
	corev1 "k8s.io/api/core/v1"
	meta "k8s.libre.sh/meta"
)

type Mutate interface {
	GetData() map[string]string
}

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

	data := r.GetData()

Timothee Gosselin's avatar
Timothee Gosselin committed
	if len(obj.Data) == 0 {
		obj.Data = make(map[string][]byte, len(data))
Timothee Gosselin's avatar
Timothee Gosselin committed
	}

	if len(data) > 0 {
		for k, v := range data {
Timothee Gosselin's avatar
Timothee Gosselin committed
			// TODO IMPROVE SECRET GENERATION CYCLE
			if len(obj.Data[k]) == 0 {
				obj.Data[k] = []byte(v)

			}
Timothee Gosselin's avatar
Timothee Gosselin committed
		}
	}

	meta.MutateMeta(m, obj)

	return nil
}