Skip to content

Commit

Permalink
chore: update inlets version to 0.8.5
Browse files Browse the repository at this point in the history
Signed-off-by: David McKay <david@rawkode.com>
  • Loading branch information
rawkode authored and alexellis committed Jul 15, 2021
1 parent aaccfde commit 13b5f15
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion chart/inlets-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Parameter | Description | Default
--- | --- | ---
`inletsProLicense` | License for use with inlets-pro | `""`
`image` | Docker image for the inlets-operator | `ghcr.io/inlets/inlets-operator:0.12.0`
`proClientImage` | Docker image for the inlets client | `ghcr.io/inlets/inlets-pro:0.8.1`
`proClientImage` | Docker image for the inlets client | `ghcr.io/inlets/inlets-pro:0.8.5`
`provider` | Your infrastructure provider - 'digitalocean', 'ec2', 'scaleway', 'equinix-metal', or 'gce' | `""`
`region` | The region to provision hosts into | `""`
`zone` | The zone where the exit node is to be provisioned (Used when Google Compute Engine is used as provider) | `us-central1-a`
Expand Down
2 changes: 1 addition & 1 deletion controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import (

const controllerAgentName = "inlets-operator"
const inletsPROControlPort = 8123
const inletsPROVersion = "0.8.1"
const inletsPROVersion = "0.8.5"

const (
// SuccessSynced is used as part of the Event 'reason' when a Tunnel is synced
Expand Down
2 changes: 1 addition & 1 deletion image_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func Test_GetInletsClientImage_DefaultProNoOverride(t *testing.T) {
}

got := c.GetInletsClientImage()
want := "ghcr.io/inlets/inlets-pro:0.8.1"
want := "ghcr.io/inlets/inlets-pro:0.8.5"
if got != want {
t.Errorf("want %s, but got %s", want, got)
t.Fail()
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func main() {
// GetInletsClientImage returns the image for the client-side tunnel
func (i *InfraConfig) GetInletsClientImage() string {
if i.ProConfig.ClientImage == "" {
return "ghcr.io/inlets/inlets-pro:0.8.1"
return "ghcr.io/inlets/inlets-pro:0.8.5"
}
return i.ProConfig.ClientImage
}
Expand Down

0 comments on commit 13b5f15

Please sign in to comment.