Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions cmd/crio/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,11 @@ func main() {
logrus.Infof("FLAG: --%s=\"%v\"\n", flagName, flagValue)
}

// TODO: delete this check in future releases
if _, ok := os.LookupEnv("CONTAINER_INCLUDED_POD_METRCIS"); ok {
logrus.Warnf("CONTAINER_INCLUDED_POD_METRCIS (typo) will be ineffective in future releases. Use CONTAINER_INCLUDED_POD_METRICS instead.")
}

// Print the current configuration.
tomlConfig, err := config.ToString()
if err != nil {
Expand Down
Loading