Skip to content

Commit

Permalink
Fix issue in inlets-pro userdata
Browse files Browse the repository at this point in the history
The name changed from having a suffix for linux, to having no
suffix at all. Also the version is bumped to 0.4.3. The issue
was found whilst trying to setup inlets-pro with inletsctl. The
operator may also need a patch for this change.

Tested by running the command as root on a Linux PC, before it
failed, after it worked.

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
  • Loading branch information
alexellis committed Jan 9, 2020
1 parent 725c13e commit 52b90e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,9 @@ curl -sLO https://raw.githubusercontent.com/inlets/inlets/master/hack/inlets-ope
export REMOTETCP="` + remoteTCP + `"
export IP=$(curl -sfSL https://ifconfig.co)
curl -SLsf https://github.com/inlets/inlets-pro-pkg/releases/download/0.4.0/inlets-pro-linux > inlets-pro-linux && \
chmod +x ./inlets-pro-linux && \
mv ./inlets-pro-linux /usr/local/bin/inlets-pro
curl -SLsf https://github.com/inlets/inlets-pro-pkg/releases/download/0.4.3/inlets-pro > /tmp/inlets-pro && \
chmod +x /tmp/inlets-pro && \
mv /tmp/inlets-pro /usr/local/bin/inlets-pro
curl -sLO https://raw.githubusercontent.com/inlets/inlets/master/hack/inlets-pro.service && \
mv inlets-pro.service /etc/systemd/system/inlets-pro.service && \
Expand Down

0 comments on commit 52b90e7

Please sign in to comment.