feat: add the fn annotations to newdeploy function based deployment (#2554)
* feat: add copy the fn annotations to the deploy annotations * feat: add copy the fn labels to the deploy labels
This commit is contained in:
@@ -22,3 +22,9 @@ func CopyStringMap(m map[string]string) map[string]string {
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
func MergeStringMap(targetMap map[string]string, sourceMap map[string]string) {
|
||||
for k, v := range sourceMap {
|
||||
targetMap[k] = v
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user