File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -25,19 +25,19 @@ func NewLogs() *cobra.Command {
25
25
26
26
cmd .Example = heredoc .WithCLIName (`
27
27
# Print the logs of an Action:
28
- <cli> logs example
28
+ <cli> action logs example
29
29
30
30
# Follow the logs of an Action:
31
- <cli> logs example --follow
31
+ <cli> action logs example --follow
32
32
33
33
# Print the logs of single container in a pod
34
- <cli> logs example step-pod -c step-pod-container
34
+ <cli> action logs example step-pod -c step-pod-container
35
35
36
36
# Print the logs of an Action's step:
37
- <cli> logs example step-pod
37
+ <cli> action logs example step-pod
38
38
39
39
# Print the logs of the latest executed Action:
40
- <cli> logs @latest
40
+ <cli> action logs @latest
41
41
` , cli .Name )
42
42
43
43
client .AddKubectlFlagsToCmd (cmd )
Original file line number Diff line number Diff line change @@ -22,19 +22,19 @@ capact action logs ACTION [POD] [flags]
22
22
23
23
```
24
24
# Print the logs of an Action:
25
- capact logs example
25
+ capact action logs example
26
26
27
27
# Follow the logs of an Action:
28
- capact logs example --follow
28
+ capact action logs example --follow
29
29
30
30
# Print the logs of single container in a pod
31
- capact logs example step-pod -c step-pod-container
31
+ capact action logs example step-pod -c step-pod-container
32
32
33
33
# Print the logs of an Action's step:
34
- capact logs example step-pod
34
+ capact action logs example step-pod
35
35
36
36
# Print the logs of the latest executed Action:
37
- capact logs @latest
37
+ capact action logs @latest
38
38
39
39
```
40
40
You can’t perform that action at this time.
0 commit comments