forked from argoproj/argo-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: get pod logs sequential Signed-off-by: May Zhang <[email protected]> * feat: check in the md file Signed-off-by: May Zhang <[email protected]> * feat: get pod logs Signed-off-by: May Zhang <[email protected]> * feat: fix conflicts Signed-off-by: May Zhang <[email protected]> * feat: fix lint error Signed-off-by: May Zhang <[email protected]> * feat: added timeout for test Signed-off-by: May Zhang <[email protected]> * feat: update doc Signed-off-by: May Zhang <[email protected]> * feat: update test Signed-off-by: May Zhang <[email protected]> * feat: add unit test Signed-off-by: May Zhang <[email protected]> * feat: add unit test Signed-off-by: May Zhang <[email protected]> * feat: fix merge conflict Signed-off-by: May Zhang <[email protected]> * feat: add e2e test Signed-off-by: May Zhang <[email protected]> * feat: clone query Signed-off-by: May Zhang <[email protected]> * feat: fix lint error Signed-off-by: May Zhang <[email protected]> * feat: rename tail-lines to tail Signed-off-by: May Zhang <[email protected]> * feat: fix when to send last message status Signed-off-by: May Zhang <[email protected]> * feat: fix lint error Signed-off-by: May Zhang <[email protected]> * feat: fix lint error Signed-off-by: May Zhang <[email protected]> * feat: retry on the client side Signed-off-by: May Zhang <[email protected]> * feat: fix lint error Signed-off-by: May Zhang <[email protected]> * feat: fix lint error Signed-off-by: May Zhang <[email protected]> * feat: fix lint error Signed-off-by: May Zhang <[email protected]> * feat: fix lint error Signed-off-by: May Zhang <[email protected]> * feat: fix lint error Signed-off-by: May Zhang <[email protected]> * feat: fix lint error Signed-off-by: May Zhang <[email protected]> * feat: if --follow, keep retry Signed-off-by: May Zhang <[email protected]> * feat: added two more flags for CLI Signed-off-by: May Zhang <[email protected]> * feat: added two more flags for CLI Signed-off-by: May Zhang <[email protected]> * feat: added two more flags for CLI Signed-off-by: May Zhang <[email protected]> * feat: added two more flags for CLI Signed-off-by: May Zhang <[email protected]> * feat: error return when there are more than 10 pods to render. Signed-off-by: May Zhang <[email protected]> * feat: if podname is present, use the same flow as if query by resource kind Signed-off-by: May Zhang <[email protected]>
- Loading branch information
1 parent
e4165d0
commit ae3de24
Showing
12 changed files
with
755 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
## argocd app logs | ||
|
||
Get logs of application pods | ||
|
||
``` | ||
argocd app logs APPNAME [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--filter string Show logs contain this string | ||
--follow Specify if the logs should be streamed | ||
--group string Resource group | ||
-h, --help help for logs | ||
--kind string Resource kind | ||
--name string Resource name | ||
--namespace string Resource namespace | ||
--since-seconds int A relative time in seconds before the current time from which to show logs | ||
--tail int The number of lines from the end of the logs to show | ||
--until-time string Show logs until this time | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--auth-token string Authentication token | ||
--client-crt string Client certificate file | ||
--client-crt-key string Client certificate key file | ||
--config string Path to Argo CD config (default "/home/user/.argocd/config") | ||
--grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. | ||
--grpc-web-root-path string Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. Set web root. | ||
-H, --header strings Sets additional header to all requests made by Argo CD CLI. (Can be repeated multiple times to add multiple headers, also supports comma separated headers) | ||
--insecure Skip server certificate and domain verification | ||
--logformat string Set the logging format. One of: text|json (default "text") | ||
--loglevel string Set the logging level. One of: debug|info|warn|error (default "info") | ||
--plaintext Disable TLS | ||
--port-forward Connect to a random argocd-server port using port forwarding | ||
--port-forward-namespace string Namespace name which should be used for port forwarding | ||
--server string Argo CD server address | ||
--server-crt string Server certificate file | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [argocd app](argocd_app.md) - Manage applications | ||
|
Oops, something went wrong.