I noticed we weren't printing anything when the configmaps change. I'm guessing people decided not to because there's a cyclical dependency caused if you try to use the logger, which depends on the config module. I decided to just add fmt.Printf statements in that case.
Second, I also noticed there were some outdated fields in the configmap we're applying when we run make start (from original Numaplane), so I removed them.
Verification
Updated ConfigMaps and verified I saw the changes reflected in the log.
Modifications
I noticed we weren't printing anything when the configmaps change. I'm guessing people decided not to because there's a cyclical dependency caused if you try to use the logger, which depends on the
config
module. I decided to just addfmt.Printf
statements in that case.Second, I also noticed there were some outdated fields in the configmap we're applying when we run
make start
(from original Numaplane), so I removed them.Verification
Updated ConfigMaps and verified I saw the changes reflected in the log.