We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b71a61f commit c8af81fCopy full SHA for c8af81f
pkg/cmd/properties/properties.go
@@ -612,16 +612,16 @@ func (p *properties) ObjectSlicePropertyValue(name string) []map[string]interfac
612
}
613
values := p.envIntfArrayPropValues[name]
614
for _, mapValues := range values {
615
- p.resolveObjSlieceValues(mapValues)
+ p.resolveObjSliceValues(mapValues)
616
617
return values
618
619
620
-func (p *properties) resolveObjSlieceValues(mapValues map[string]interface{}) {
+func (p *properties) resolveObjSliceValues(mapValues map[string]interface{}) {
621
for name, valueIface := range mapValues {
622
switch val := valueIface.(type) {
623
case map[string]interface{}:
624
- p.resolveObjSlieceValues(val)
+ p.resolveObjSliceValues(val)
625
case string:
626
mapValues[name] = p.resolveSecretReference(name, val)
627
0 commit comments