blob: 806c818cd85100aacf606f0adfcaf663fa6f1995 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 envvar
import corev1 "k8s.io/api/core/v1"
// Get --
func Get(vars []corev1.EnvVar, name string) *corev1.EnvVar {
for i := 0; i < len(vars); i++ {
if vars[i].Name == name {
return &vars[i]
}
}
return nil
}
// Remove --
func Remove(vars *[]corev1.EnvVar, name string) {
v := *vars
for i := 0; i < len(v); i++ {
if v[i].Name == name {
v = append(v[:i], v[i+1:]...)
*vars = v
return
}
}
}
// SetVal --
func SetVal(vars *[]corev1.EnvVar, name string, value string) {
envVar := Get(*vars, name)
if envVar != nil {
envVar.Value = value
envVar.ValueFrom = nil
} else {
*vars = append(*vars, corev1.EnvVar{
Name: name,
Value: value,
})
}
}
// SetVar --
func SetVar(vars *[]corev1.EnvVar, newEnvVar corev1.EnvVar) {
envVar := Get(*vars, newEnvVar.Name)
if envVar != nil {
envVar.Value = newEnvVar.Value
envVar.ValueFrom = nil
if newEnvVar.ValueFrom != nil {
from := *newEnvVar.ValueFrom
envVar.ValueFrom = &from
}
} else {
*vars = append(*vars, newEnvVar)
}
}
// SetValFrom --
func SetValFrom(vars *[]corev1.EnvVar, name string, path string) {
envVar := Get(*vars, name)
if envVar != nil {
envVar.Value = ""
envVar.ValueFrom = &corev1.EnvVarSource{
FieldRef: &corev1.ObjectFieldSelector{
FieldPath: path,
},
}
} else {
*vars = append(*vars, corev1.EnvVar{
Name: name,
ValueFrom: &corev1.EnvVarSource{
FieldRef: &corev1.ObjectFieldSelector{
FieldPath: path,
},
},
})
}
}