Skip to content
This repository was archived by the owner on Nov 11, 2019. It is now read-only.
Open
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
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,8 @@ To run an example customisation you need an exiting OpenShift cluster with integ

Next you need to get the available inventory file from the manifest secret

```
(mac osx)

oc get secret inventory -n webapp --template '{{index .data "generated_inventory"}}' | base64 -D > inventory
```

```
(Linux)

oc get secret inventory -n webapp --template '{{index .data "generated_inventory"}}' | base64 -d > inventory
```sh
oc get secret inventory -n webapp --template '{{index .data "generated_inventory"|base64decode}}' > inventory
```

You should also be logged into the cluster as an admin user.
Expand Down