Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enter_modify #342

Closed
wants to merge 40 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
c0a38f1
[fix]playbook/memcached
Cyber-SiKu Feb 22, 2023
10994d9
[fix]playbook/memcached
Cyber-SiKu Feb 22, 2023
de36749
Feature: support managing disk information in database
Mar 3, 2023
af342de
Merge pull request #188 from legionxiong/new-disk-format
tsonglew Mar 3, 2023
2c50545
Feature: support direct disk mounting for service container
Mar 19, 2023
397fc08
Merge pull request #201 from legionxiong/auto-mount-disk
tsonglew Apr 10, 2023
78c415a
[feat] add toolsv2
Cyber-SiKu Feb 28, 2023
d7db7c6
[feat]curvefs/curvebs: auto restart&mount
Cyber-SiKu Mar 7, 2023
050eb05
Fix: remove deprecated ioutil
fengshunli May 19, 2023
5feab2c
Fix: update package dependencies
fengshunli May 17, 2023
5c622b9
Feat: add golangci-lint
fengshunli May 17, 2023
62d83a2
Fix: format code
fengshunli May 30, 2023
f90ed57
Merge pull request #236 from fengshunli/code
caoxianfei1 May 31, 2023
9e46bbe
feature(curvebs): support poolset
jolly-sy Nov 28, 2022
8fa1398
[fix] repace harbor with opencurve
Cyber-SiKu Jun 21, 2023
26a6b3c
support deploy monitor
SeanHai Apr 26, 2023
c896257
add http service
SeanHai Apr 23, 2023
1ab4aac
support deploy website
SeanHai May 8, 2023
7cee1b6
Merge pull request #250 from SeanHai/curve-manager
SeanHai Jun 25, 2023
15076a4
[fix] update the example
montaguelhz Jun 25, 2023
e150a3b
fix clean monitor
SeanHai Jul 4, 2023
d750c94
Merge pull request #262 from SeanHai/auth
SeanHai Jul 4, 2023
8c55ada
fix generate target.json when curvefs
SeanHai Jul 6, 2023
60cee71
Merge pull request #264 from SeanHai/auth
SeanHai Jul 6, 2023
7d3bd4b
add dirs http service need
SeanHai Jul 14, 2023
3b6b0a1
Merge pull request #276 from SeanHai/auth
SeanHai Jul 14, 2023
dc048d1
support enable etcd auth
SeanHai Aug 3, 2023
eeda84f
[fix]playbook: fix format related variables position
Songjf-ttk Aug 30, 2023
df9eea9
[fix] add support for recognizing kernel versions like "3.15.0_.*"
jyf111 Aug 30, 2023
b1c5562
Merge pull request #305 from Songjf-ttk/fixposition
caoxianfei1 Aug 31, 2023
dbe508e
Merge pull request #306 from jyf111/fix-kernel-version
caoxianfei1 Aug 31, 2023
956c953
Merge pull request #281 from SeanHai/auth
SeanHai Aug 31, 2023
bc5ef37
Feature: podman can be an alternative container engine
caoxianfei1 Aug 10, 2023
061b6e4
bugfix: docker ps specify both --format and --quiet will warning sinc…
caoxianfei1 Aug 11, 2023
7401855
change replicas to instances
tiansuo114 Aug 27, 2023
28dd6b0
Update cli/command/status.go
Wine93 Sep 1, 2023
a13b532
[fix] older versions of the ss command do not have the --no-header op…
jyf111 Aug 19, 2023
de8f69d
[CI] add basic static check, compile, test
357447923 Aug 16, 2023
14c8166
[feat]curveadm: add clean command for bs format
Songjf-ttk Oct 7, 2023
8fc6f47
enter_modify
LYPWYT Nov 10, 2023
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
Prev Previous commit
Next Next commit
Update cli/command/status.go
Signed-off-by: Wine93 <[email protected]>
Wine93 authored and caoxianfei1 committed Sep 12, 2023
commit 28dd6b03f00564a969556f58e5818c0a8f409263
2 changes: 1 addition & 1 deletion cli/command/status.go
Original file line number Diff line number Diff line change
@@ -73,7 +73,7 @@ func NewStatusCommand(curveadm *cli.CurveAdm) *cobra.Command {
flags.StringVar(&options.role, "role", "*", "Specify service role")
flags.StringVar(&options.host, "host", "*", "Specify service host")
flags.BoolVarP(&options.verbose, "verbose", "v", false, "Verbose output for status")
flags.BoolVarP(&options.showInstances, "show-instances", "s", false, "Display service num")
flags.BoolVarP(&options.showInstances, "show-instances", "s", false, "Display service instances")

return cmd
}