Skip to content

Commit

Permalink
Merge pull request #15294 from cdapio/sb_fix
Browse files Browse the repository at this point in the history
Support bundle script: fix help text
  • Loading branch information
rmstar authored Aug 18, 2023
2 parents 814e0a5 + b56305a commit c842322
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cdap-support-bundle/bin/collect_support_bundle.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The CDAP Support Bundle Script takes the following command-line arguments:

6. --run-id, -r : The run ID of the pipeline, if you want to collect logs for a failed pipeline run.

7. --runtime-namespace, -t : The runtime namespace, which is the namespace where the pipeline is running. Default is set to "default".
7. --runtime-namespace, -t : The runtime namespace, which is the kubernetes namespace where the pipeline is running. Default is set to "default".

**Support Bundle Script Execution**
-----------------------------------
Expand Down
4 changes: 2 additions & 2 deletions cdap-support-bundle/bin/collect_support_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
parser.add_argument(
"--runtime-namespace",
"-t",
help="CDAP Runtime namespace. Namespace where pipeline is running",
help="Kubernetes namespace where pipeline is running",
type=str,
default="default"
)
Expand Down Expand Up @@ -716,4 +716,4 @@ def log_commands_processor(commandLists, directoryName, cdap_ns, pipeline_name,

if __name__ == "__main__":
args = parser.parse_args()
main(args.kube_namespace, args.username, args.password, args.cdap_ns, args.pipeline_name, args.run_id, args.runtime_namespace)
main(args.kube_namespace, args.username, args.password, args.cdap_ns, args.pipeline_name, args.run_id, args.runtime_namespace)

0 comments on commit c842322

Please sign in to comment.