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

Update readme for v1.15.2 release #51

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ There are two ways to obtain the plugin

### Download from IBM container registry

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.15.1` will have `v1.15.1` of the plugin.
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.15.2` will have `v1.15.2` of the plugin.

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,

1. If you use docker:

```
id=$(docker create cp.icr.io/cpopen/cpfs/ibm-pak:v1.15.1 - )
id=$(docker create cp.icr.io/cpopen/cpfs/ibm-pak:v1.15.2 - )
docker cp $id:/ibm-pak-plugin plugin-dir
docker rm -v $id
cd plugin-dir
Expand All @@ -51,7 +51,7 @@ cd plugin-dir
2. If you podman:

```
id=$(podman create cp.icr.io/cpopen/cpfs/ibm-pak:v1.15.1 - )
id=$(podman create cp.icr.io/cpopen/cpfs/ibm-pak:v1.15.2 - )
podman cp $id:/ibm-pak-plugin plugin-dir
podman rm -v $id
cd plugin-dir
Expand Down
36 changes: 18 additions & 18 deletions docs/download-github.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,72 +21,72 @@
Example using `curl`:

```
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-darwin-amd64.tar.gz -o oc-ibm_pak-darwin-amd64.tar.gz
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-darwin-amd64.tar.gz.sig -o oc-ibm_pak-darwin-amd64.tar.gz.sig
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-darwin-amd64.tar.gz -o oc-ibm_pak-darwin-amd64.tar.gz
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-darwin-amd64.tar.gz.sig -o oc-ibm_pak-darwin-amd64.tar.gz.sig
```

Example using `wget`:

```
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-darwin-amd64.tar.gz
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-darwin-amd64.tar.gz.sig
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-darwin-amd64.tar.gz
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-darwin-amd64.tar.gz.sig
```

## Linux x86-architecture

Example using `curl`:

```
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-amd64.tar.gz -o oc-ibm_pak-linux-amd64.tar.gz
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-amd64.tar.gz.sig -o oc-ibm_pak-linux-amd64.tar.gz.sig
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-amd64.tar.gz -o oc-ibm_pak-linux-amd64.tar.gz
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-amd64.tar.gz.sig -o oc-ibm_pak-linux-amd64.tar.gz.sig
```

Example using `wget`:

```
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-amd64.tar.gz
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-amd64.tar.gz.sig
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-amd64.tar.gz
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-amd64.tar.gz.sig
```

## Linux ppc64le-architecture

Example using `curl`:

```
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-ppc64le.tar.gz -o oc-ibm_pak-linux-ppc64le.tar.gz
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-ppc64le.tar.gz.sig -o oc-ibm_pak-linux-ppc64le.tar.gz.sig
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-ppc64le.tar.gz -o oc-ibm_pak-linux-ppc64le.tar.gz
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-ppc64le.tar.gz.sig -o oc-ibm_pak-linux-ppc64le.tar.gz.sig
```

Example using `wget`:

```
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-ppc64le.tar.gz
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-ppc64le.tar.gz.sig
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-ppc64le.tar.gz
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-ppc64le.tar.gz.sig
```

## Linux s390x-architecture

Example using `curl`:

```
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-s390x.tar.gz -o oc-ibm_pak-linux-s390x.tar.gz
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-s390x.tar.gz.sig -o oc-ibm_pak-linux-s390x.tar.gz.sig
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-s390x.tar.gz -o oc-ibm_pak-linux-s390x.tar.gz
curl -L https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-s390x.tar.gz.sig -o oc-ibm_pak-linux-s390x.tar.gz.sig
```

Example using `wget`:

```
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-s390x.tar.gz
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-linux-s390x.tar.gz.sig
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-s390x.tar.gz
wget https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-linux-s390x.tar.gz.sig
```

## Windows

Example (from PowerShell) using `curl`:

```
curl https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-windows-amd64.tar.gz -o oc-ibm_pak-windows-amd64.tar.gz
curl https://github.com/IBM/ibm-pak/releases/download/v1.15.1/oc-ibm_pak-windows-amd64.tar.gz.sig -o oc-ibm_pak-windows-amd64.tar.gz.sig
curl https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-windows-amd64.tar.gz -o oc-ibm_pak-windows-amd64.tar.gz
curl https://github.com/IBM/ibm-pak/releases/download/v1.15.2/oc-ibm_pak-windows-amd64.tar.gz.sig -o oc-ibm_pak-windows-amd64.tar.gz.sig
```

# Download public keys for ibm-pak versions less than v1.5.0
Expand Down