diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2e3e36e92d8b7..7c2cf3d232585 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,23 @@
# Changelog
+## 15.4.1 (06/10/24)
+
+* Updated OpenSSL to 3.0.14. [#42642](https://github.com/gravitational/teleport/pull/42642)
+* Fixed fetching resources with tons of metadata (such as labels or description) in Teleport Connect. [#42627](https://github.com/gravitational/teleport/pull/42627)
+* Added support for Microsoft Entra ID directory synchronization (Teleport Enterprise only, preview). [#42555](https://github.com/gravitational/teleport/pull/42555)
+* Added experimental support for storing audit events in cockroach. [#42549](https://github.com/gravitational/teleport/pull/42549)
+* Teleport Connect binaries for Windows are now signed. [#42472](https://github.com/gravitational/teleport/pull/42472)
+* Updated Go to 1.21.11. [#42404](https://github.com/gravitational/teleport/pull/42404)
+* Added GCP Cloud SQL for PostgreSQL backend support. [#42399](https://github.com/gravitational/teleport/pull/42399)
+* Added Prometheus metrics for the Postgres event backend. [#42384](https://github.com/gravitational/teleport/pull/42384)
+* Fixed the event-handler Helm chart causing stuck rollouts when using a PVC. [#42363](https://github.com/gravitational/teleport/pull/42363)
+* Fixed web UI notification dropdown menu height from growing too long from many notifications. [#42336](https://github.com/gravitational/teleport/pull/42336)
+* Disabled session recordings for non-interactive sessions when enhanced recording is disabled. There is no loss of auditing or impact on data fidelity because these recordings only contained session.start, session.end, and session.leave events which were already captured in the audit log. This will cause all teleport components to consume less resources and reduce storage costs. [#42320](https://github.com/gravitational/teleport/pull/42320)
+* Fixed an issue where removing an app could make teleport app agents incorrectly report as unhealthy for a short time. [#42270](https://github.com/gravitational/teleport/pull/42270)
+* Fixed a panic in the DynamoDB audit log backend when the cursor fell outside of the [From,To] interval. [#42267](https://github.com/gravitational/teleport/pull/42267)
+* The `teleport configure` command now supports a `--node-name` flag for overriding the node's hostname. [#42250](https://github.com/gravitational/teleport/pull/42250)
+* Added support plugin resource in `tctl` tool. [#42224](https://github.com/gravitational/teleport/pull/42224)
+
## 15.4.0 (05/31/24)
### Access requests notification routing rules
diff --git a/Makefile b/Makefile
index cf0cd2a9b12e7..3daded2b156dd 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@
# Stable releases: "1.0.0"
# Pre-releases: "1.0.0-alpha.1", "1.0.0-beta.2", "1.0.0-rc.3"
# Master/dev branch: "1.0.0-dev"
-VERSION=15.4.0
+VERSION=15.4.1
DOCKER_IMAGE ?= teleport
diff --git a/api/version.go b/api/version.go
index d61ec0d94a667..e5625a79f3976 100644
--- a/api/version.go
+++ b/api/version.go
@@ -3,6 +3,6 @@ package api
import "github.com/coreos/go-semver/semver"
-const Version = "15.4.0"
+const Version = "15.4.1"
var SemVersion = semver.New(Version)
diff --git a/build.assets/macos/tsh/tsh.app/Contents/Info.plist b/build.assets/macos/tsh/tsh.app/Contents/Info.plist
index c3c855e9f43d7..1d662e6ab776f 100644
--- a/build.assets/macos/tsh/tsh.app/Contents/Info.plist
+++ b/build.assets/macos/tsh/tsh.app/Contents/Info.plist
@@ -19,13 +19,13 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 15.4.0
+ 15.4.1
CFBundleSupportedPlatforms
MacOSX
CFBundleVersion
- 15.4.0
+ 15.4.1
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
diff --git a/build.assets/macos/tshdev/tsh.app/Contents/Info.plist b/build.assets/macos/tshdev/tsh.app/Contents/Info.plist
index 2d97f896cf15b..c6eedf37552ba 100644
--- a/build.assets/macos/tshdev/tsh.app/Contents/Info.plist
+++ b/build.assets/macos/tshdev/tsh.app/Contents/Info.plist
@@ -17,13 +17,13 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 15.4.0
+ 15.4.1
CFBundleSupportedPlatforms
MacOSX
CFBundleVersion
- 15.4.0
+ 15.4.1
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
diff --git a/examples/chart/access/discord/Chart.yaml b/examples/chart/access/discord/Chart.yaml
index e47a029844d00..630fd88c70701 100644
--- a/examples/chart/access/discord/Chart.yaml
+++ b/examples/chart/access/discord/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
apiVersion: v2
name: teleport-plugin-discord
diff --git a/examples/chart/access/discord/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/discord/tests/__snapshot__/configmap_test.yaml.snap
index f0f723679b221..936cf2dfc48d8 100644
--- a/examples/chart/access/discord/tests/__snapshot__/configmap_test.yaml.snap
+++ b/examples/chart/access/discord/tests/__snapshot__/configmap_test.yaml.snap
@@ -24,6 +24,6 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-discord
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-discord-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-discord-15.4.1
name: RELEASE-NAME-teleport-plugin-discord
diff --git a/examples/chart/access/discord/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/discord/tests/__snapshot__/deployment_test.yaml.snap
index 30a84ee78c93e..70182e4223e03 100644
--- a/examples/chart/access/discord/tests/__snapshot__/deployment_test.yaml.snap
+++ b/examples/chart/access/discord/tests/__snapshot__/deployment_test.yaml.snap
@@ -7,8 +7,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-discord
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-discord-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-discord-15.4.1
name: RELEASE-NAME-teleport-plugin-discord
spec:
replicas: 1
@@ -22,8 +22,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-discord
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-discord-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-discord-15.4.1
spec:
containers:
- command:
diff --git a/examples/chart/access/email/Chart.yaml b/examples/chart/access/email/Chart.yaml
index c2f8ddc784e31..499d931df5008 100644
--- a/examples/chart/access/email/Chart.yaml
+++ b/examples/chart/access/email/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
apiVersion: v2
name: teleport-plugin-email
diff --git a/examples/chart/access/email/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/email/tests/__snapshot__/configmap_test.yaml.snap
index a370a14b95504..d0b1781d0a4ef 100644
--- a/examples/chart/access/email/tests/__snapshot__/configmap_test.yaml.snap
+++ b/examples/chart/access/email/tests/__snapshot__/configmap_test.yaml.snap
@@ -26,8 +26,8 @@ should match the snapshot (mailgun on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
should match the snapshot (smtp on):
1: |
@@ -59,8 +59,8 @@ should match the snapshot (smtp on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
should match the snapshot (smtp on, no starttls):
1: |
@@ -92,8 +92,8 @@ should match the snapshot (smtp on, no starttls):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
should match the snapshot (smtp on, password file):
1: |
@@ -125,8 +125,8 @@ should match the snapshot (smtp on, password file):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
should match the snapshot (smtp on, roleToRecipients set):
1: |
@@ -161,8 +161,8 @@ should match the snapshot (smtp on, roleToRecipients set):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
should match the snapshot (smtp on, starttls disabled):
1: |
@@ -194,6 +194,6 @@ should match the snapshot (smtp on, starttls disabled):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
diff --git a/examples/chart/access/email/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/email/tests/__snapshot__/deployment_test.yaml.snap
index 2f9ba5d93b30b..2829307ddc126 100644
--- a/examples/chart/access/email/tests/__snapshot__/deployment_test.yaml.snap
+++ b/examples/chart/access/email/tests/__snapshot__/deployment_test.yaml.snap
@@ -7,8 +7,8 @@ should be possible to override volume name (smtp on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
spec:
replicas: 1
@@ -22,8 +22,8 @@ should be possible to override volume name (smtp on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
spec:
containers:
- command:
@@ -34,7 +34,7 @@ should be possible to override volume name (smtp on):
env:
- name: TELEPORT_PLUGIN_FAIL_FAST
value: "true"
- image: public.ecr.aws/gravitational/teleport-plugin-email:15.4.0
+ image: public.ecr.aws/gravitational/teleport-plugin-email:15.4.1
imagePullPolicy: IfNotPresent
name: teleport-plugin-email
ports:
@@ -75,8 +75,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
spec:
replicas: 1
@@ -90,8 +90,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
spec:
containers:
- command:
@@ -136,8 +136,8 @@ should match the snapshot (mailgun on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
spec:
replicas: 1
@@ -151,8 +151,8 @@ should match the snapshot (mailgun on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
spec:
containers:
- command:
@@ -163,7 +163,7 @@ should match the snapshot (mailgun on):
env:
- name: TELEPORT_PLUGIN_FAIL_FAST
value: "true"
- image: public.ecr.aws/gravitational/teleport-plugin-email:15.4.0
+ image: public.ecr.aws/gravitational/teleport-plugin-email:15.4.1
imagePullPolicy: IfNotPresent
name: teleport-plugin-email
ports:
@@ -204,8 +204,8 @@ should match the snapshot (smtp on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
spec:
replicas: 1
@@ -219,8 +219,8 @@ should match the snapshot (smtp on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
spec:
containers:
- command:
@@ -231,7 +231,7 @@ should match the snapshot (smtp on):
env:
- name: TELEPORT_PLUGIN_FAIL_FAST
value: "true"
- image: public.ecr.aws/gravitational/teleport-plugin-email:15.4.0
+ image: public.ecr.aws/gravitational/teleport-plugin-email:15.4.1
imagePullPolicy: IfNotPresent
name: teleport-plugin-email
ports:
@@ -272,8 +272,8 @@ should mount external secret (mailgun on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
spec:
replicas: 1
@@ -287,8 +287,8 @@ should mount external secret (mailgun on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
spec:
containers:
- command:
@@ -299,7 +299,7 @@ should mount external secret (mailgun on):
env:
- name: TELEPORT_PLUGIN_FAIL_FAST
value: "true"
- image: public.ecr.aws/gravitational/teleport-plugin-email:15.4.0
+ image: public.ecr.aws/gravitational/teleport-plugin-email:15.4.1
imagePullPolicy: IfNotPresent
name: teleport-plugin-email
ports:
@@ -340,8 +340,8 @@ should mount external secret (smtp on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
name: RELEASE-NAME-teleport-plugin-email
spec:
replicas: 1
@@ -355,8 +355,8 @@ should mount external secret (smtp on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-email
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-email-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-email-15.4.1
spec:
containers:
- command:
@@ -367,7 +367,7 @@ should mount external secret (smtp on):
env:
- name: TELEPORT_PLUGIN_FAIL_FAST
value: "true"
- image: public.ecr.aws/gravitational/teleport-plugin-email:15.4.0
+ image: public.ecr.aws/gravitational/teleport-plugin-email:15.4.1
imagePullPolicy: IfNotPresent
name: teleport-plugin-email
ports:
diff --git a/examples/chart/access/jira/Chart.yaml b/examples/chart/access/jira/Chart.yaml
index 33febd0952201..3806b193f2266 100644
--- a/examples/chart/access/jira/Chart.yaml
+++ b/examples/chart/access/jira/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
apiVersion: v2
name: teleport-plugin-jira
diff --git a/examples/chart/access/jira/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/jira/tests/__snapshot__/configmap_test.yaml.snap
index 2391012cfa00b..92962c6026185 100644
--- a/examples/chart/access/jira/tests/__snapshot__/configmap_test.yaml.snap
+++ b/examples/chart/access/jira/tests/__snapshot__/configmap_test.yaml.snap
@@ -32,6 +32,6 @@ should match the snapshot (smtp on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-jira
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-jira-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-jira-15.4.1
name: RELEASE-NAME-teleport-plugin-jira
diff --git a/examples/chart/access/jira/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/jira/tests/__snapshot__/deployment_test.yaml.snap
index a1557f9d187cc..040492de10418 100644
--- a/examples/chart/access/jira/tests/__snapshot__/deployment_test.yaml.snap
+++ b/examples/chart/access/jira/tests/__snapshot__/deployment_test.yaml.snap
@@ -7,8 +7,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-jira
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-jira-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-jira-15.4.1
name: RELEASE-NAME-teleport-plugin-jira
spec:
replicas: 1
@@ -22,8 +22,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-jira
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-jira-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-jira-15.4.1
spec:
containers:
- command:
diff --git a/examples/chart/access/mattermost/Chart.yaml b/examples/chart/access/mattermost/Chart.yaml
index b0b11a9d0daae..6e4364cf520da 100644
--- a/examples/chart/access/mattermost/Chart.yaml
+++ b/examples/chart/access/mattermost/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
apiVersion: v2
name: teleport-plugin-mattermost
diff --git a/examples/chart/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap
index c1f1c30703f8d..d5ad2cdda7d2f 100644
--- a/examples/chart/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap
+++ b/examples/chart/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap
@@ -22,6 +22,6 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-mattermost
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-mattermost-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-mattermost-15.4.1
name: RELEASE-NAME-teleport-plugin-mattermost
diff --git a/examples/chart/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap
index 15c539f4b6311..4e784d7c7189a 100644
--- a/examples/chart/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap
+++ b/examples/chart/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap
@@ -7,8 +7,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-mattermost
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-mattermost-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-mattermost-15.4.1
name: RELEASE-NAME-teleport-plugin-mattermost
spec:
replicas: 1
@@ -22,8 +22,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-mattermost
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-mattermost-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-mattermost-15.4.1
spec:
containers:
- command:
@@ -75,8 +75,8 @@ should mount external secret:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-mattermost
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-mattermost-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-mattermost-15.4.1
name: RELEASE-NAME-teleport-plugin-mattermost
spec:
replicas: 1
@@ -90,8 +90,8 @@ should mount external secret:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-mattermost
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-mattermost-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-mattermost-15.4.1
spec:
containers:
- command:
@@ -102,7 +102,7 @@ should mount external secret:
env:
- name: TELEPORT_PLUGIN_FAIL_FAST
value: "true"
- image: public.ecr.aws/gravitational/teleport-plugin-mattermost:15.4.0
+ image: public.ecr.aws/gravitational/teleport-plugin-mattermost:15.4.1
imagePullPolicy: IfNotPresent
name: teleport-plugin-mattermost
ports:
@@ -143,8 +143,8 @@ should override volume name:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-mattermost
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-mattermost-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-mattermost-15.4.1
name: RELEASE-NAME-teleport-plugin-mattermost
spec:
replicas: 1
@@ -158,8 +158,8 @@ should override volume name:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-mattermost
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-mattermost-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-mattermost-15.4.1
spec:
containers:
- command:
@@ -170,7 +170,7 @@ should override volume name:
env:
- name: TELEPORT_PLUGIN_FAIL_FAST
value: "true"
- image: public.ecr.aws/gravitational/teleport-plugin-mattermost:15.4.0
+ image: public.ecr.aws/gravitational/teleport-plugin-mattermost:15.4.1
imagePullPolicy: IfNotPresent
name: teleport-plugin-mattermost
ports:
diff --git a/examples/chart/access/msteams/Chart.yaml b/examples/chart/access/msteams/Chart.yaml
index f9bdc4864c1fd..c6a2f5ade4bb3 100644
--- a/examples/chart/access/msteams/Chart.yaml
+++ b/examples/chart/access/msteams/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
apiVersion: v2
name: teleport-plugin-msteams
diff --git a/examples/chart/access/msteams/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/msteams/tests/__snapshot__/configmap_test.yaml.snap
index 756423c3a4be3..b214f54e87cf5 100644
--- a/examples/chart/access/msteams/tests/__snapshot__/configmap_test.yaml.snap
+++ b/examples/chart/access/msteams/tests/__snapshot__/configmap_test.yaml.snap
@@ -29,6 +29,6 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-msteams
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-msteams-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-msteams-15.4.1
name: RELEASE-NAME-teleport-plugin-msteams
diff --git a/examples/chart/access/msteams/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/msteams/tests/__snapshot__/deployment_test.yaml.snap
index 22871299336f5..b5a6087b05fb4 100644
--- a/examples/chart/access/msteams/tests/__snapshot__/deployment_test.yaml.snap
+++ b/examples/chart/access/msteams/tests/__snapshot__/deployment_test.yaml.snap
@@ -7,8 +7,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-msteams
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-msteams-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-msteams-15.4.1
name: RELEASE-NAME-teleport-plugin-msteams
spec:
replicas: 1
@@ -22,8 +22,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-msteams
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-msteams-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-msteams-15.4.1
spec:
containers:
- command:
diff --git a/examples/chart/access/pagerduty/Chart.yaml b/examples/chart/access/pagerduty/Chart.yaml
index 9b33841f5dc87..c3001c78debe8 100644
--- a/examples/chart/access/pagerduty/Chart.yaml
+++ b/examples/chart/access/pagerduty/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
apiVersion: v2
name: teleport-plugin-pagerduty
diff --git a/examples/chart/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap
index 07df01fff894f..b1e6ff6a17c11 100644
--- a/examples/chart/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap
+++ b/examples/chart/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap
@@ -21,6 +21,6 @@ should match the snapshot (smtp on):
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-pagerduty
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-pagerduty-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-pagerduty-15.4.1
name: RELEASE-NAME-teleport-plugin-pagerduty
diff --git a/examples/chart/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap
index e3be10fc34d6c..af979d8baecbd 100644
--- a/examples/chart/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap
+++ b/examples/chart/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap
@@ -7,8 +7,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-pagerduty
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-pagerduty-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-pagerduty-15.4.1
name: RELEASE-NAME-teleport-plugin-pagerduty
spec:
replicas: 1
@@ -22,8 +22,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-pagerduty
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-pagerduty-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-pagerduty-15.4.1
spec:
containers:
- command:
diff --git a/examples/chart/access/slack/Chart.yaml b/examples/chart/access/slack/Chart.yaml
index ede1e2ffb270a..5654f8ed005ec 100644
--- a/examples/chart/access/slack/Chart.yaml
+++ b/examples/chart/access/slack/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
apiVersion: v2
name: teleport-plugin-slack
diff --git a/examples/chart/access/slack/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/slack/tests/__snapshot__/configmap_test.yaml.snap
index bd0d92fba6049..9185cd450d453 100644
--- a/examples/chart/access/slack/tests/__snapshot__/configmap_test.yaml.snap
+++ b/examples/chart/access/slack/tests/__snapshot__/configmap_test.yaml.snap
@@ -24,6 +24,6 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-slack
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-slack-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-slack-15.4.1
name: RELEASE-NAME-teleport-plugin-slack
diff --git a/examples/chart/access/slack/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/slack/tests/__snapshot__/deployment_test.yaml.snap
index 99c2cd5bdde4f..9984460e9c0ff 100644
--- a/examples/chart/access/slack/tests/__snapshot__/deployment_test.yaml.snap
+++ b/examples/chart/access/slack/tests/__snapshot__/deployment_test.yaml.snap
@@ -7,8 +7,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-slack
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-slack-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-slack-15.4.1
name: RELEASE-NAME-teleport-plugin-slack
spec:
replicas: 1
@@ -22,8 +22,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-slack
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-slack-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-slack-15.4.1
spec:
containers:
- command:
diff --git a/examples/chart/event-handler/Chart.yaml b/examples/chart/event-handler/Chart.yaml
index 1d993353289b6..d9125372836ee 100644
--- a/examples/chart/event-handler/Chart.yaml
+++ b/examples/chart/event-handler/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
apiVersion: v2
name: teleport-plugin-event-handler
diff --git a/examples/chart/event-handler/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/event-handler/tests/__snapshot__/configmap_test.yaml.snap
index 0b0d226de0ae3..fbec1bb3733e3 100644
--- a/examples/chart/event-handler/tests/__snapshot__/configmap_test.yaml.snap
+++ b/examples/chart/event-handler/tests/__snapshot__/configmap_test.yaml.snap
@@ -25,6 +25,6 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-event-handler
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-event-handler-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-event-handler-15.4.1
name: RELEASE-NAME-teleport-plugin-event-handler
diff --git a/examples/chart/event-handler/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/event-handler/tests/__snapshot__/deployment_test.yaml.snap
index 612812c0e2344..b3b1b4348a835 100644
--- a/examples/chart/event-handler/tests/__snapshot__/deployment_test.yaml.snap
+++ b/examples/chart/event-handler/tests/__snapshot__/deployment_test.yaml.snap
@@ -7,8 +7,8 @@ should match the snapshot:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-plugin-event-handler
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-plugin-event-handler-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-plugin-event-handler-15.4.1
name: RELEASE-NAME-teleport-plugin-event-handler
spec:
replicas: 1
diff --git a/examples/chart/teleport-cluster/Chart.yaml b/examples/chart/teleport-cluster/Chart.yaml
index bf22e1d184e80..009f323c78ea1 100644
--- a/examples/chart/teleport-cluster/Chart.yaml
+++ b/examples/chart/teleport-cluster/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
name: teleport-cluster
apiVersion: v2
diff --git a/examples/chart/teleport-cluster/charts/teleport-operator/Chart.yaml b/examples/chart/teleport-cluster/charts/teleport-operator/Chart.yaml
index 366d69a96cb77..89bfe6e6a4b80 100644
--- a/examples/chart/teleport-cluster/charts/teleport-operator/Chart.yaml
+++ b/examples/chart/teleport-cluster/charts/teleport-operator/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
name: teleport-operator
apiVersion: v2
diff --git a/examples/chart/teleport-cluster/tests/__snapshot__/auth_clusterrole_test.yaml.snap b/examples/chart/teleport-cluster/tests/__snapshot__/auth_clusterrole_test.yaml.snap
index 083a48ba3017b..145c86eeaeffc 100644
--- a/examples/chart/teleport-cluster/tests/__snapshot__/auth_clusterrole_test.yaml.snap
+++ b/examples/chart/teleport-cluster/tests/__snapshot__/auth_clusterrole_test.yaml.snap
@@ -8,8 +8,8 @@ adds operator permissions to ClusterRole:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-cluster
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-cluster-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-cluster-15.4.1
teleport.dev/majorVersion: "15"
name: RELEASE-NAME
rules:
diff --git a/examples/chart/teleport-cluster/tests/__snapshot__/auth_config_test.yaml.snap b/examples/chart/teleport-cluster/tests/__snapshot__/auth_config_test.yaml.snap
index 7d1080bec5800..ef9c0caf6661e 100644
--- a/examples/chart/teleport-cluster/tests/__snapshot__/auth_config_test.yaml.snap
+++ b/examples/chart/teleport-cluster/tests/__snapshot__/auth_config_test.yaml.snap
@@ -1848,8 +1848,8 @@ sets clusterDomain on Configmap:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-cluster
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-cluster-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-cluster-15.4.1
teleport.dev/majorVersion: "15"
name: RELEASE-NAME-auth
namespace: NAMESPACE
diff --git a/examples/chart/teleport-cluster/tests/__snapshot__/auth_deployment_test.yaml.snap b/examples/chart/teleport-cluster/tests/__snapshot__/auth_deployment_test.yaml.snap
index 7768249c97b49..3fa720e010118 100644
--- a/examples/chart/teleport-cluster/tests/__snapshot__/auth_deployment_test.yaml.snap
+++ b/examples/chart/teleport-cluster/tests/__snapshot__/auth_deployment_test.yaml.snap
@@ -8,7 +8,7 @@
- args:
- --diag-addr=0.0.0.0:3000
- --apply-on-startup=/etc/teleport/apply-on-startup.yaml
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -141,7 +141,7 @@ should set nodeSelector when set in values:
- args:
- --diag-addr=0.0.0.0:3000
- --apply-on-startup=/etc/teleport/apply-on-startup.yaml
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -238,7 +238,7 @@ should set resources when set in values:
- args:
- --diag-addr=0.0.0.0:3000
- --apply-on-startup=/etc/teleport/apply-on-startup.yaml
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -324,7 +324,7 @@ should set securityContext when set in values:
- args:
- --diag-addr=0.0.0.0:3000
- --apply-on-startup=/etc/teleport/apply-on-startup.yaml
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
diff --git a/examples/chart/teleport-cluster/tests/__snapshot__/proxy_config_test.yaml.snap b/examples/chart/teleport-cluster/tests/__snapshot__/proxy_config_test.yaml.snap
index 24b06ac25b7a5..12dd06b276fed 100644
--- a/examples/chart/teleport-cluster/tests/__snapshot__/proxy_config_test.yaml.snap
+++ b/examples/chart/teleport-cluster/tests/__snapshot__/proxy_config_test.yaml.snap
@@ -567,8 +567,8 @@ sets clusterDomain on Configmap:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-cluster
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-cluster-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-cluster-15.4.1
teleport.dev/majorVersion: "15"
name: RELEASE-NAME-proxy
namespace: NAMESPACE
diff --git a/examples/chart/teleport-cluster/tests/__snapshot__/proxy_deployment_test.yaml.snap b/examples/chart/teleport-cluster/tests/__snapshot__/proxy_deployment_test.yaml.snap
index 8d98c011cacd0..99a813144ddc7 100644
--- a/examples/chart/teleport-cluster/tests/__snapshot__/proxy_deployment_test.yaml.snap
+++ b/examples/chart/teleport-cluster/tests/__snapshot__/proxy_deployment_test.yaml.snap
@@ -11,8 +11,8 @@ sets clusterDomain on Deployment Pods:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-cluster
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-cluster-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-cluster-15.4.1
teleport.dev/majorVersion: "15"
name: RELEASE-NAME-proxy
namespace: NAMESPACE
@@ -26,7 +26,7 @@ sets clusterDomain on Deployment Pods:
template:
metadata:
annotations:
- checksum/config: 008d688b9353c063cbf23692fbe3f3d40d706c2a47661476c7de4235c83b0850
+ checksum/config: d485c7fc2ca6e7e4360182fc229899fab90a4fc48c90bbde564a8db54d247157
kubernetes.io/pod: test-annotation
kubernetes.io/pod-different: 4
labels:
@@ -34,8 +34,8 @@ sets clusterDomain on Deployment Pods:
app.kubernetes.io/instance: RELEASE-NAME
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: teleport-cluster
- app.kubernetes.io/version: 15.4.0
- helm.sh/chart: teleport-cluster-15.4.0
+ app.kubernetes.io/version: 15.4.1
+ helm.sh/chart: teleport-cluster-15.4.1
teleport.dev/majorVersion: "15"
spec:
affinity:
@@ -44,7 +44,7 @@ sets clusterDomain on Deployment Pods:
containers:
- args:
- --diag-addr=0.0.0.0:3000
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -105,7 +105,7 @@ sets clusterDomain on Deployment Pods:
- wait
- no-resolve
- RELEASE-NAME-auth-v14.NAMESPACE.svc.test.com
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
name: wait-auth-update
serviceAccountName: RELEASE-NAME-proxy
terminationGracePeriodSeconds: 60
@@ -137,7 +137,7 @@ should provision initContainer correctly when set in values:
- wait
- no-resolve
- RELEASE-NAME-auth-v14.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
name: wait-auth-update
resources:
limits:
@@ -201,7 +201,7 @@ should set nodeSelector when set in values:
containers:
- args:
- --diag-addr=0.0.0.0:3000
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -262,7 +262,7 @@ should set nodeSelector when set in values:
- wait
- no-resolve
- RELEASE-NAME-auth-v14.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
name: wait-auth-update
nodeSelector:
environment: security
@@ -313,7 +313,7 @@ should set resources for wait-auth-update initContainer when set in values:
containers:
- args:
- --diag-addr=0.0.0.0:3000
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -381,7 +381,7 @@ should set resources for wait-auth-update initContainer when set in values:
- wait
- no-resolve
- RELEASE-NAME-auth-v14.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
name: wait-auth-update
resources:
limits:
@@ -421,7 +421,7 @@ should set resources when set in values:
containers:
- args:
- --diag-addr=0.0.0.0:3000
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -489,7 +489,7 @@ should set resources when set in values:
- wait
- no-resolve
- RELEASE-NAME-auth-v14.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
name: wait-auth-update
resources:
limits:
@@ -529,7 +529,7 @@ should set securityContext for initContainers when set in values:
containers:
- args:
- --diag-addr=0.0.0.0:3000
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -597,7 +597,7 @@ should set securityContext for initContainers when set in values:
- wait
- no-resolve
- RELEASE-NAME-auth-v14.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
name: wait-auth-update
securityContext:
allowPrivilegeEscalation: false
@@ -637,7 +637,7 @@ should set securityContext when set in values:
containers:
- args:
- --diag-addr=0.0.0.0:3000
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -705,7 +705,7 @@ should set securityContext when set in values:
- wait
- no-resolve
- RELEASE-NAME-auth-v14.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
name: wait-auth-update
securityContext:
allowPrivilegeEscalation: false
diff --git a/examples/chart/teleport-kube-agent/Chart.yaml b/examples/chart/teleport-kube-agent/Chart.yaml
index 2f2f9b31eb545..7dbeeed392a7c 100644
--- a/examples/chart/teleport-kube-agent/Chart.yaml
+++ b/examples/chart/teleport-kube-agent/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "15.4.0"
+.version: &version "15.4.1"
name: teleport-kube-agent
apiVersion: v2
diff --git a/examples/chart/teleport-kube-agent/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/teleport-kube-agent/tests/__snapshot__/deployment_test.yaml.snap
index a8567ab9a2951..af9e73c119454 100644
--- a/examples/chart/teleport-kube-agent/tests/__snapshot__/deployment_test.yaml.snap
+++ b/examples/chart/teleport-kube-agent/tests/__snapshot__/deployment_test.yaml.snap
@@ -30,7 +30,7 @@ sets Deployment annotations when specified if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -103,7 +103,7 @@ sets Deployment labels when specified if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -163,7 +163,7 @@ sets Pod annotations when specified if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -223,7 +223,7 @@ sets Pod labels when specified if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -300,7 +300,7 @@ should add emptyDir for data when existingDataVolume is not set if action is Upg
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -361,7 +361,7 @@ should add insecureSkipProxyTLSVerify to args when set in values if action is Up
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -421,7 +421,7 @@ should correctly configure existingDataVolume when set if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -479,7 +479,7 @@ should expose diag port if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -551,7 +551,7 @@ should have multiple replicas when replicaCount is set (using .replicaCount, dep
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -623,7 +623,7 @@ should have multiple replicas when replicaCount is set (using highAvailability.r
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -683,7 +683,7 @@ should have one replica when replicaCount is not set if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -743,7 +743,7 @@ should mount extraVolumes and extraVolumeMounts if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -810,7 +810,7 @@ should mount tls.existingCASecretName and set environment when set in values if
value: "true"
- name: SSL_CERT_FILE
value: /etc/teleport-tls-ca/ca.pem
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -880,7 +880,7 @@ should mount tls.existingCASecretName and set extra environment when set in valu
value: http://username:password@my.proxy.host:3128
- name: SSL_CERT_FILE
value: /etc/teleport-tls-ca/ca.pem
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -946,7 +946,7 @@ should provision initContainer correctly when set in values if action is Upgrade
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1042,7 +1042,7 @@ should set SecurityContext if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1122,7 +1122,7 @@ should set affinity when set in values if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1182,7 +1182,7 @@ should set default serviceAccountName when not set in values if action is Upgrad
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1255,7 +1255,7 @@ should set environment when extraEnv set in values if action is Upgrade:
value: "true"
- name: HTTPS_PROXY
value: http://username:password@my.proxy.host:3128
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1375,7 +1375,7 @@ should set imagePullPolicy when set in values if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: Always
livenessProbe:
failureThreshold: 6
@@ -1435,7 +1435,7 @@ should set nodeSelector if set in values if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1497,7 +1497,7 @@ should set not set priorityClassName when not set in values if action is Upgrade
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1569,7 +1569,7 @@ should set preferred affinity when more than one replica is used if action is Up
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1629,7 +1629,7 @@ should set priorityClassName when set in values if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1690,7 +1690,7 @@ should set probeTimeoutSeconds when set in values if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1760,7 +1760,7 @@ should set required affinity when highAvailability.requireAntiAffinity is set if
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1820,7 +1820,7 @@ should set resources when set in values if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1887,7 +1887,7 @@ should set serviceAccountName when set in values if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1947,7 +1947,7 @@ should set tolerations when set in values if action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
diff --git a/examples/chart/teleport-kube-agent/tests/__snapshot__/job_test.yaml.snap b/examples/chart/teleport-kube-agent/tests/__snapshot__/job_test.yaml.snap
index 739bc2bc946d4..e995d648c877c 100644
--- a/examples/chart/teleport-kube-agent/tests/__snapshot__/job_test.yaml.snap
+++ b/examples/chart/teleport-kube-agent/tests/__snapshot__/job_test.yaml.snap
@@ -25,7 +25,7 @@ should create ServiceAccount for post-delete hook by default:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
name: post-delete-job
securityContext:
@@ -104,7 +104,7 @@ should not create ServiceAccount for post-delete hook if serviceAccount.create i
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
name: post-delete-job
securityContext:
@@ -132,7 +132,7 @@ should not create ServiceAccount, Role or RoleBinding for post-delete hook if se
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
name: post-delete-job
securityContext:
@@ -160,7 +160,7 @@ should set nodeSelector in post-delete hook:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
name: post-delete-job
securityContext:
@@ -190,7 +190,7 @@ should set securityContext in post-delete hook:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
name: post-delete-job
securityContext:
diff --git a/examples/chart/teleport-kube-agent/tests/__snapshot__/statefulset_test.yaml.snap b/examples/chart/teleport-kube-agent/tests/__snapshot__/statefulset_test.yaml.snap
index f1924e3108b12..2a829fea8a002 100644
--- a/examples/chart/teleport-kube-agent/tests/__snapshot__/statefulset_test.yaml.snap
+++ b/examples/chart/teleport-kube-agent/tests/__snapshot__/statefulset_test.yaml.snap
@@ -16,7 +16,7 @@ sets Pod annotations when specified:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -84,7 +84,7 @@ sets Pod labels when specified:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -176,7 +176,7 @@ sets StatefulSet labels when specified:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -272,7 +272,7 @@ should add insecureSkipProxyTLSVerify to args when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -340,7 +340,7 @@ should add volumeClaimTemplate for data volume when using StatefulSet and action
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -428,7 +428,7 @@ should add volumeClaimTemplate for data volume when using StatefulSet and is Fre
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -506,7 +506,7 @@ should add volumeMount for data volume when using StatefulSet:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -574,7 +574,7 @@ should expose diag port:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -642,7 +642,7 @@ should generate Statefulset when storage is disabled and mode is a Upgrade:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -724,7 +724,7 @@ should have multiple replicas when replicaCount is set (using .replicaCount, dep
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -804,7 +804,7 @@ should have multiple replicas when replicaCount is set (using highAvailability.r
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -872,7 +872,7 @@ should have one replica when replicaCount is not set:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -940,7 +940,7 @@ should install Statefulset when storage is disabled and mode is a Fresh Install:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1010,7 +1010,7 @@ should mount extraVolumes and extraVolumeMounts:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1085,7 +1085,7 @@ should mount tls.existingCASecretName and set environment when set in values:
value: RELEASE-NAME
- name: SSL_CERT_FILE
value: /etc/teleport-tls-ca/ca.pem
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1165,7 +1165,7 @@ should mount tls.existingCASecretName and set extra environment when set in valu
value: /etc/teleport-tls-ca/ca.pem
- name: HTTPS_PROXY
value: http://username:password@my.proxy.host:3128
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1241,7 +1241,7 @@ should not add emptyDir for data when using StatefulSet:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1309,7 +1309,7 @@ should provision initContainer correctly when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1413,7 +1413,7 @@ should set SecurityContext:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1501,7 +1501,7 @@ should set affinity when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1569,7 +1569,7 @@ should set default serviceAccountName when not set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1650,7 +1650,7 @@ should set environment when extraEnv set in values:
value: RELEASE-NAME
- name: HTTPS_PROXY
value: http://username:password@my.proxy.host:3128
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1786,7 +1786,7 @@ should set imagePullPolicy when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: Always
livenessProbe:
failureThreshold: 6
@@ -1854,7 +1854,7 @@ should set nodeSelector if set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1936,7 +1936,7 @@ should set preferred affinity when more than one replica is used:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2004,7 +2004,7 @@ should set probeTimeoutSeconds when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2082,7 +2082,7 @@ should set required affinity when highAvailability.requireAntiAffinity is set:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2150,7 +2150,7 @@ should set resources when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2225,7 +2225,7 @@ should set serviceAccountName when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2293,7 +2293,7 @@ should set storage.requests when set in values and action is an Upgrade:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2361,7 +2361,7 @@ should set storage.storageClassName when set in values and action is an Upgrade:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2429,7 +2429,7 @@ should set tolerations when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:15.4.0
+ image: public.ecr.aws/gravitational/teleport-distroless:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
diff --git a/examples/chart/teleport-kube-agent/tests/__snapshot__/updater_deployment_test.yaml.snap b/examples/chart/teleport-kube-agent/tests/__snapshot__/updater_deployment_test.yaml.snap
index ed32ec0531258..410174bf2852e 100644
--- a/examples/chart/teleport-kube-agent/tests/__snapshot__/updater_deployment_test.yaml.snap
+++ b/examples/chart/teleport-kube-agent/tests/__snapshot__/updater_deployment_test.yaml.snap
@@ -27,7 +27,7 @@ sets the affinity:
- --base-image=public.ecr.aws/gravitational/teleport-distroless
- --version-server=https://my-custom-version-server/v1
- --version-channel=custom/preview
- image: public.ecr.aws/gravitational/teleport-kube-agent-updater:15.4.0
+ image: public.ecr.aws/gravitational/teleport-kube-agent-updater:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -71,7 +71,7 @@ sets the tolerations:
- --base-image=public.ecr.aws/gravitational/teleport-distroless
- --version-server=https://my-custom-version-server/v1
- --version-channel=custom/preview
- image: public.ecr.aws/gravitational/teleport-kube-agent-updater:15.4.0
+ image: public.ecr.aws/gravitational/teleport-kube-agent-updater:15.4.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6