Skip to content
This repository has been archived by the owner on Nov 17, 2022. It is now read-only.

Commit

Permalink
change flag description
Browse files Browse the repository at this point in the history
  • Loading branch information
kimxogus authored and JoelSpeed committed Jun 14, 2018
1 parent a5f0bee commit 093e62d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Then build the code using `go build` which will produce the built binary in a fi

`--spot-node-label` (default: `node-role.kubernetes.io/spot-worker`) Name of label on nodes to be considered as targets for pods.

`--delete-non-replicated-pods` (default: `false`) Delete non replicated pods in on-demand instance for rescheduling.
`--delete-non-replicated-pods` (default: `false`) Delete non-replicated pods running on on-demand instance. Note that some non-replicated pods will not be rescheduled.

## Scope of the project
### Does
Expand Down
2 changes: 1 addition & 1 deletion rescheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ var (
listenAddress = flags.String("listen-address", "localhost:9235",
`Address to listen on for serving prometheus metrics`)

deleteNonReplicatedPods = flags.Bool("delete-non-replicated-pods", false, `Delete non replicated pods in on-demand instance for rescheduling.`)
deleteNonReplicatedPods = flags.Bool("delete-non-replicated-pods", false, `Delete non-replicated pods running on on-demand instance. Note that some non-replicated pods will not be rescheduled.`)
)

func main() {
Expand Down

0 comments on commit 093e62d

Please sign in to comment.