correcting typo on ignored and correcting comment on optional

This commit is contained in:
2025-12-01 09:33:12 -06:00
parent fc84f39676
commit d94d421bf4

View File

@@ -195,13 +195,13 @@ func (chart *HelmChart) generateDeployment(service types.ServiceConfig, deployme
return err
}
// isgnored service
// ignored service
if isIgnored(service) {
logger.Info("Ignoring service ", service.Name)
return nil
}
// isgnored service
// optional service
if isSvcOptional(service) {
logger.Info("Optional service ", service.Name)
return nil