Skip to content

Commit

Permalink
syncthing 1.4.0 (#768)
Browse files Browse the repository at this point in the history
* syncthing 1.4.0

Signed-off-by: Ramiro Berrelleza <rberrelleza@gmail.com>
  • Loading branch information
rberrelleza committed Mar 17, 2020
1 parent 0dc24da commit 8d1d9af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions pkg/k8s/deployments/translate.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ const (
oktetoBinName = "okteto-bin"

//syncthing
oktetoBinImageTag = "okteto/bin:1.1.7"
oktetoSyncSecretVolume = "okteto-sync-secret"
oktetoDevSecretVolume = "okteto-dev-secret"
oktetoBinImageTag = "okteto/bin:1.1.10"
oktetoSyncSecretVolume = "okteto-sync-secret" // skipcq GSC-G101 not a secret
oktetoDevSecretVolume = "okteto-dev-secret" // skipcq GSC-G101 not a secret
oktetoSecretTemplate = "okteto-%s"

maxRetriesUpdateRevision = 150
Expand Down
10 changes: 5 additions & 5 deletions pkg/syncthing/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ import (

var (
downloadURLs = map[string]string{
"linux": "https://github.com/syncthing/syncthing/releases/download/v1.3.4/syncthing-linux-amd64-v1.3.4.tar.gz",
"arm64": "https://github.com/syncthing/syncthing/releases/download/v1.3.4/syncthing-linux-arm64-v1.3.4.tar.gz",
"darwin": "https://github.com/syncthing/syncthing/releases/download/v1.3.4/syncthing-macos-amd64-v1.3.4.tar.gz",
"windows": "https://github.com/syncthing/syncthing/releases/download/v1.3.4/syncthing-windows-amd64-v1.3.4.zip",
"linux": "https://github.com/syncthing/syncthing/releases/download/v1.4.0/syncthing-linux-amd64-v1.4.0.tar.gz",
"arm64": "https://github.com/syncthing/syncthing/releases/download/v1.4.0/syncthing-linux-arm64-v1.4.0.tar.gz",
"darwin": "https://github.com/syncthing/syncthing/releases/download/v1.4.0/syncthing-macos-amd64-v1.4.0.tar.gz",
"windows": "https://github.com/syncthing/syncthing/releases/download/v1.4.0/syncthing-windows-amd64-v1.4.0.zip",
}

minimumVersion = semver.MustParse("1.3.4")
minimumVersion = semver.MustParse("1.4.0")
versionRegex = regexp.MustCompile(`syncthing v(\d+\.\d+\.\d+) .*`)
)

Expand Down

0 comments on commit 8d1d9af

Please sign in to comment.