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
* Fix sed issue on OSX
On OSX `sed` throws an error if you do not specify a file extension when
`-i` is given. Fixing the docs to address this on OSX.
```
-i extension
Edit files in-place, saving backups with the specified
extension. If a zero-length extension is given, no backup
will be saved. It is not recommended to give a
zero-length extension when in-place editing
files, as you risk corruption or partial
content in situations where disk space is
exhausted, etc.
```
If you are performing these steps on OSX, use the following command:
198
+
```
199
+
$ sed -i "" 's|REPLACE_IMAGE|quay.io/example/memcached-operator:v0.0.1|g' deploy/operator.yaml
200
+
```
201
+
196
202
The Deployment manifest is generated at `deploy/operator.yaml`. Be sure to update the deployment image as shown above since the default is just a placeholder.
0 commit comments