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 2 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 update
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #108 (comment). The command for updating the repos has changed. The command 'helm update' is deprecated in favor of '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