Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions chart/inlets-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ annotatedOnly: false
# These two versions should match for the client and server
# For the client which will run as a Deployment in Kubernetes
inletsClient:
image: "ghcr.io/inlets/inlets-pro:0.11.8"
image: "ghcr.io/inlets/inlets-pro:0.11.14"

# Note: This needs to be updated manually to match inletsClient.image
# For the server which will run a binary via systemd
inletsRelease: "0.11.8"
inletsRelease: "0.11.14"

#plan: <The plan or size for your cloud instance>

Expand Down
4 changes: 2 additions & 2 deletions image_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func Test_GetInletsReleaseDefault(t *testing.T) {

got := c.GetInletsRelease()

want := "0.9.40"
want := "0.11.14"
if got != want {
t.Fatalf("want %s, but got %s", want, got)
}
Expand Down Expand Up @@ -48,7 +48,7 @@ func Test_InletsClientImageDefault(t *testing.T) {
}

got := c.GetInletsClientImage()
want := "ghcr.io/inlets/inlets-pro:0.9.40"
want := "ghcr.io/inlets/inlets-pro:0.11.14"
if got != want {
t.Fatalf("want %s, but got %s", want, got)
}
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func init() {
flag.StringVar(&masterURL, "master", "", "The address of the Kubernetes API server. Overrides any value in kubeconfig. Only required if out-of-cluster.")
}

const defaultRelease = "0.9.40"
const defaultRelease = "0.11.14"

func main() {
infra := &InfraConfig{
Expand Down
Loading