Skip to content
This repository has been archived by the owner on Nov 11, 2021. It is now read-only.

Need an empty prefix for the sed command to work on Mac and Helm update before install #108

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,16 @@ Pull the minimal values file from the current repo:

```bash
curl -O https://raw.githubusercontent.com/Alfresco/alfresco-dbp-deployment/master/charts/incubator/alfresco-dbp/minimal-values.yaml
sed -i s/REPLACEME/$LOCALIP/g minimal-values.yaml
sed -i "" s/REPLACEME/$LOCALIP/g minimal-values.yaml
```

### 11. Deploy the DBP

```bash
# Make sure you have the latest Helm charts locally
helm repo update
```

```bash
# From within the same folder as your minimal-values file
helm install alfresco-incubator/alfresco-dbp -f minimal-values.yaml
Expand Down