You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,14 +35,14 @@ There are two ways to obtain the plugin
35
35
36
36
### Download from IBM container registry
37
37
38
-
The plugin is also provided in a container image `cp.icr.io/cpopen/cpfs/ibm-pak:TAG` where `TAG` should be replaced with the corresponding plugin version, for example `cp.icr.io/cpopen/cpfs/ibm-pak:v1.19.1` will have `v1.19.1` of the plugin.
38
+
The plugin is also provided in a container image `cp.icr.io/cpopen/cpfs/ibm-pak:TAG` where `TAG` should be replaced with the corresponding plugin version, for example `cp.icr.io/cpopen/cpfs/ibm-pak:v1.20.0` will have `v1.20.0` of the plugin.
39
39
40
40
The following command will create a container and copy the plug-ins for all the supported platforms in a directory, `plugin-dir`. You can specify any directory name and it will be created while copying. After copying, it will delete the temporary container. The `plugin-dir` will have all the binaries and other artifacts you find in a Github release and repo at [IBM/ibm-pak](https://github.com/IBM/ibm-pak). For example,
--skip-verify if provided, skips the certification verification (optional)
391
392
--version string the "semantic version range" specifying the CASE to download, e.g. '2.0.0' or '>=1.0.0, <=3.0.0' (optional - assumes latest if not provided)
@@ -424,6 +425,11 @@ Example:
424
425
oc ibm-pak get ibm-my-cloudpak --version 1.0.0 --install-method helm
425
426
```
426
427
428
+
- Download a CASE with unique sub-CASE version (most suitable) when multiple versions of sub-CASE found (Supported with ibm-pak version `v1.20.0` or higher)
429
+
```
430
+
oc ibm-pak get ibm-my-cloudpak --version 1.0.0 --resolve-unique-dependencies
431
+
```
432
+
427
433
# ibm-pak generate mirror-manifests
428
434
Generate mirror manifests for a CASE
429
435
@@ -637,10 +643,14 @@ Usage:
637
643
oc ibm-pak list
638
644
639
645
Flags:
640
-
--case-name string print the list of all CASE images (separately printed for each version) matching the given case name
641
-
--downloaded print the list of downloaded CASE images available locally
642
-
-h, --help help for list
643
-
-o, --output string Specify output format as json, yaml or ""
646
+
--case-name string print the list of all CASE images (separately printed for each version) matching the given case name
647
+
--case-version string list helm charts of given CASE
648
+
--chart-name string list helm charts versions of given chart
649
+
--chart-repo string Chart repository
650
+
--charts list helm charts available in provided repository or downloaded locally
651
+
--downloaded print the list of downloaded CASE images available locally
652
+
-h, --help help for list
653
+
-o, --output string Specify output format as json, yaml or ""
644
654
```
645
655
646
656
Example:
@@ -686,6 +696,42 @@ Example:
686
696
oc ibm-pak list --case-name ibm-my-cloudpak --downloaded -o yaml
687
697
```
688
698
699
+
- List all Charts available in the provided chart repository (Supported with ibm-pak version `v1.20.0` or higher)
700
+
```
701
+
oc ibm-pak list --charts --chart-repo https://github.com/IBM/charts/raw/master/repo/ibm-helm/
702
+
```
703
+
704
+
- List all Charts in json output (Supported with ibm-pak version `v1.20.0` or higher)
705
+
```
706
+
oc ibm-pak list --charts --chart-repo https://github.com/IBM/charts/raw/master/repo/ibm-helm/ -o json
707
+
```
708
+
709
+
- List all Charts in yaml output (Supported with ibm-pak version `v1.20.0` or higher)
710
+
```
711
+
oc ibm-pak list --charts --chart-repo https://github.com/IBM/charts/raw/master/repo/ibm-helm/ -o yaml
712
+
```
713
+
714
+
- List all versions of Chart for a specific chart name (Supported with ibm-pak version `v1.20.0` or higher)
715
+
```
716
+
oc ibm-pak list --charts --chart-name ibm-appconnect-operator --chart-repo https://github.com/IBM/charts/raw/master/repo/ibm-helm/
717
+
```
718
+
719
+
- List all downloaded Charts from ibm-pak workspace (Supported with ibm-pak version `v1.20.0` or higher)
720
+
```
721
+
oc ibm-pak list --charts --downloaded
722
+
```
723
+
724
+
- List all downloaded Charts for a CASE (Supported with ibm-pak version `v1.20.0` or higher)
725
+
```
726
+
oc ibm-pak list --charts --case-name ibm-cert-manager --downloaded
727
+
```
728
+
729
+
- List all downloaded Charts for a CASE for specific version (Supported with ibm-pak version `v1.20.0` or higher)
730
+
```
731
+
oc ibm-pak list --charts --case-name ibm-cert-manager --case-version 4.2.15 --downloaded
0 commit comments