Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlhansen committed Aug 26, 2024
1 parent 4969e56 commit 740e7ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/idrac-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: "0.3.0"
version: "0.4.0"

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.4.1"
appVersion: "1.4.2"
4 changes: 2 additions & 2 deletions cmd/idrac_exporter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ func main() {
flag.StringVar(&configFile, "config", "/etc/prometheus/idrac.yml", "Path to idrac exporter configuration file")
flag.Parse()

log.Info("Build information: version=%s revision=%s", version.Version, version.Revision)
config.ReadConfig(configFile)

if verbose {
Expand All @@ -27,9 +28,8 @@ func main() {
http.HandleFunc("/metrics", MetricsHandler)
http.HandleFunc("/health", HealthHandler)
http.HandleFunc("/reset", ResetHandler)
bind := fmt.Sprintf("%s:%d", config.Config.Address, config.Config.Port)

log.Info("Build information: version=%s revision=%s", version.Version, version.Revision)
bind := fmt.Sprintf("%s:%d", config.Config.Address, config.Config.Port)
log.Info("Server listening on %s", bind)

err := http.ListenAndServe(bind, nil)
Expand Down

0 comments on commit 740e7ff

Please sign in to comment.