Merge branch 'master' into merge-release-1.14-to-master

This commit is contained in:
Anton Troshin 2024-11-04 20:14:52 -06:00 committed by GitHub
commit 002a223864
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

6
.github/holopin.yml vendored
View File

@ -1,6 +1,6 @@
organization: dapr
defaultSticker: clmjkxscc122740fl0mkmb7egi
defaultSticker: clutq4bgp107990fl1h4m7jp3b
stickers:
-
id: clmjkxscc122740fl0mkmb7egi
alias: ghc2023
id: clutq4bgp107990fl1h4m7jp3b
alias: cli-badge

View File

@ -98,7 +98,7 @@ dapr stop --run-file /path/to/directory -k
func init() {
StopCmd.Flags().StringVarP(&stopAppID, "app-id", "a", "", "The application id to be stopped")
StopCmd.Flags().StringVarP(&runFilePath, "run-file", "f", "", "Path to the run template file for the list of apps to stop")
StopCmd.Flags().BoolVarP(&stopK8s, "kubernetes", "k", false, "Stop deployments in Kunernetes based on multi-app run file")
StopCmd.Flags().BoolVarP(&stopK8s, "kubernetes", "k", false, "Stop deployments in Kubernetes based on multi-app run file")
StopCmd.Flags().BoolP("help", "h", false, "Print this help message")
RootCmd.AddCommand(StopCmd)
}