Skip to content

Commit 83813a7

Browse files
authored
Upgrade Teleport (#1085)
* Upgrade Teleport * Upgrade Teleport chart version
1 parent eee2cd6 commit 83813a7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

internal/api/request_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func TestNewCreateClusterRequestFromReader(t *testing.T) {
3333
"nginx-internal": {Chart: "4.11.1", ValuesPath: ""},
3434
"prometheus-operator": {Chart: "54.2.2", ValuesPath: ""},
3535
"thanos": {Chart: "13.2.2", ValuesPath: ""},
36-
"teleport": {Chart: "10.3.16", ValuesPath: ""},
36+
"teleport": {Chart: "12.4.34", ValuesPath: ""},
3737
"pgbouncer": {Chart: "1.2.1", ValuesPath: ""},
3838
"promtail": {Chart: "6.15.5", ValuesPath: ""},
3939
"rtcd": {Chart: "1.3.0", ValuesPath: ""},
@@ -104,7 +104,7 @@ func TestNewCreateClusterRequestFromReader(t *testing.T) {
104104
"nginx-internal": {Chart: "4.11.1", ValuesPath: ""},
105105
"prometheus-operator": {Chart: "54.2.2", ValuesPath: ""},
106106
"thanos": {Chart: "13.2.2", ValuesPath: ""},
107-
"teleport": {Chart: "10.3.16", ValuesPath: ""},
107+
"teleport": {Chart: "12.4.34", ValuesPath: ""},
108108
"pgbouncer": {Chart: "1.2.1", ValuesPath: ""},
109109
"promtail": {Chart: "6.15.5", ValuesPath: ""},
110110
"rtcd": {Chart: "1.3.0", ValuesPath: ""},

model/cluster_utility.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ var DefaultUtilityVersions map[string]*HelmUtilityVersion = map[string]*HelmUtil
127127
// FluentbitCanonicalName defines the default version and values path for the Helm chart
128128
FluentbitCanonicalName: {Chart: "0.31.0", ValuesPath: ""},
129129
// TeleportCanonicalName defines the default version and values path for the Helm chart
130-
TeleportCanonicalName: {Chart: "10.3.16", ValuesPath: ""},
130+
TeleportCanonicalName: {Chart: "12.4.34", ValuesPath: ""},
131131
// PgbouncerCanonicalName defines the default version and values path for the Helm chart
132132
PgbouncerCanonicalName: {Chart: "1.2.1", ValuesPath: ""},
133133
// PromtailCanonicalName defines the default version and values path for the Helm chart

model/cluster_utility_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func TestGetActualVersion(t *testing.T) {
148148
Thanos: &HelmUtilityVersion{Chart: "thanos-2.4"},
149149
Nginx: &HelmUtilityVersion{Chart: "nginx-10.2"},
150150
Fluentbit: &HelmUtilityVersion{Chart: "fluent-bit-0.9"},
151-
Teleport: &HelmUtilityVersion{Chart: "teleport-kube-agent-10.3.16"},
151+
Teleport: &HelmUtilityVersion{Chart: "teleport-kube-agent-12.4.34"},
152152
Pgbouncer: &HelmUtilityVersion{Chart: "pgbouncer-1.2.1"},
153153
Promtail: &HelmUtilityVersion{Chart: "promtail-6.15.5"},
154154
Rtcd: &HelmUtilityVersion{Chart: "rtcd-1.3.0"},
@@ -173,7 +173,7 @@ func TestGetActualVersion(t *testing.T) {
173173
assert.Equal(t, &HelmUtilityVersion{Chart: "fluent-bit-0.9"}, version)
174174

175175
version = c.ActualUtilityVersion(TeleportCanonicalName)
176-
assert.Equal(t, &HelmUtilityVersion{Chart: "teleport-kube-agent-10.3.16"}, version)
176+
assert.Equal(t, &HelmUtilityVersion{Chart: "teleport-kube-agent-12.4.34"}, version)
177177

178178
version = c.ActualUtilityVersion(PgbouncerCanonicalName)
179179
assert.Equal(t, &HelmUtilityVersion{Chart: "pgbouncer-1.2.1"}, version)
@@ -222,7 +222,7 @@ func TestGetDesiredVersion(t *testing.T) {
222222
Thanos: &HelmUtilityVersion{Chart: "thanos-2.4"},
223223
Nginx: &HelmUtilityVersion{Chart: "nginx-10.2"},
224224
Fluentbit: &HelmUtilityVersion{Chart: "fluent-bit-0.9"},
225-
Teleport: &HelmUtilityVersion{Chart: "teleport-kube-agent-10.3.16"},
225+
Teleport: &HelmUtilityVersion{Chart: "teleport-kube-agent-12.4.34"},
226226
Pgbouncer: &HelmUtilityVersion{Chart: "pgbouncer-1.2.1"},
227227
Promtail: &HelmUtilityVersion{Chart: "promtail-6.15.5"},
228228
Rtcd: &HelmUtilityVersion{Chart: "rtcd-1.3.0"},

0 commit comments

Comments
 (0)