diff --git a/CHANGELOG.md b/CHANGELOG.md
index d531bf13f1864..89939a70c9fb0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
# Changelog
+## 16.0.1 (06/17/24)
+
+* `tctl` now ignores any configuration file if the auth_service section is disabled, and prefer loading credentials from a given identity file or tsh profile instead. [#43115](https://github.com/gravitational/teleport/pull/43115)
+* Skip `jamf_service` validation when the service is not enabled. [#43095](https://github.com/gravitational/teleport/pull/43095)
+* Fix v16.0.0 amd64 Teleport plugin images using arm64 binaries. [#43084](https://github.com/gravitational/teleport/pull/43084)
+* Add ability to edit user traits from the Web UI. [#43067](https://github.com/gravitational/teleport/pull/43067)
+* Enforce limits when reading events from Firestore for large time windows to prevent OOM events. [#42966](https://github.com/gravitational/teleport/pull/42966)
+* Allow all authenticated users to read the cluster `vnet_config`. [#42957](https://github.com/gravitational/teleport/pull/42957)
+* Improve search and predicate/label based dialing performance in large clusters under very high load. [#42943](https://github.com/gravitational/teleport/pull/42943)
+
## 16.0.0 (06/13/24)
Teleport 16 brings the following new features and improvements:
diff --git a/Makefile b/Makefile
index f4a0982da14d1..bdb50d8a65672 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=16.0.0
+VERSION=16.0.1
DOCKER_IMAGE ?= teleport
diff --git a/api/version.go b/api/version.go
index cd51378c74d85..e02c0a6924461 100644
--- a/api/version.go
+++ b/api/version.go
@@ -3,6 +3,6 @@ package api
import "github.com/coreos/go-semver/semver"
-const Version = "16.0.0"
+const Version = "16.0.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 d1a4d942c90c7..0757a43d2dd26 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
- 16.0.0
+ 16.0.1
CFBundleSupportedPlatforms
MacOSX
CFBundleVersion
- 16.0.0
+ 16.0.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 926406028c9af..79861ba176101 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
- 16.0.0
+ 16.0.1
CFBundleSupportedPlatforms
MacOSX
CFBundleVersion
- 16.0.0
+ 16.0.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 59685331e7d07..f23bef7e9784a 100644
--- a/examples/chart/access/discord/Chart.yaml
+++ b/examples/chart/access/discord/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "16.0.0"
+.version: &version "16.0.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 a65e1485cfe5d..3811c838bc77c 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: 16.0.0
- helm.sh/chart: teleport-plugin-discord-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-discord-16.0.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 cd89b1309a0e0..f5017dfc00190 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: 16.0.0
- helm.sh/chart: teleport-plugin-discord-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-discord-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-discord-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-discord-16.0.1
spec:
containers:
- command:
diff --git a/examples/chart/access/email/Chart.yaml b/examples/chart/access/email/Chart.yaml
index deb964f004e63..497435483f94d 100644
--- a/examples/chart/access/email/Chart.yaml
+++ b/examples/chart/access/email/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "16.0.0"
+.version: &version "16.0.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 c8d969298a1c1..01fccd203da9d 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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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 31a2426ddd15e..ebdd5710699e7 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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-plugin-email:16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-plugin-email:16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-plugin-email:16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-plugin-email:16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-email-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-email-16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-plugin-email:16.0.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 3dfc8189f2b80..34f0e1cc2c2c1 100644
--- a/examples/chart/access/jira/Chart.yaml
+++ b/examples/chart/access/jira/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "16.0.0"
+.version: &version "16.0.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 d66aa58aef464..d7f2aba2c2e5f 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: 16.0.0
- helm.sh/chart: teleport-plugin-jira-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-jira-16.0.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 2b090dd385cd2..a8d0e012294cc 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: 16.0.0
- helm.sh/chart: teleport-plugin-jira-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-jira-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-jira-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-jira-16.0.1
spec:
containers:
- command:
diff --git a/examples/chart/access/mattermost/Chart.yaml b/examples/chart/access/mattermost/Chart.yaml
index 0b1ad27bc9e4a..c4d503538a5c2 100644
--- a/examples/chart/access/mattermost/Chart.yaml
+++ b/examples/chart/access/mattermost/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "16.0.0"
+.version: &version "16.0.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 271fb4c656da3..2eb02b0a3e6d8 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: 16.0.0
- helm.sh/chart: teleport-plugin-mattermost-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-mattermost-16.0.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 9cdb88856322c..e7f4a7d98e0e3 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: 16.0.0
- helm.sh/chart: teleport-plugin-mattermost-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-mattermost-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-mattermost-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-mattermost-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-mattermost-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-mattermost-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-mattermost-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-mattermost-16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-plugin-mattermost:16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-mattermost-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-mattermost-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-mattermost-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-mattermost-16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-plugin-mattermost:16.0.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 a14d075c5450b..d1918864672e7 100644
--- a/examples/chart/access/msteams/Chart.yaml
+++ b/examples/chart/access/msteams/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "16.0.0"
+.version: &version "16.0.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 966bfd8ad1df6..9efd4cfeff14d 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: 16.0.0
- helm.sh/chart: teleport-plugin-msteams-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-msteams-16.0.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 e3650a633f093..b15ee82e9d546 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: 16.0.0
- helm.sh/chart: teleport-plugin-msteams-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-msteams-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-msteams-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-msteams-16.0.1
spec:
containers:
- command:
diff --git a/examples/chart/access/pagerduty/Chart.yaml b/examples/chart/access/pagerduty/Chart.yaml
index 3a18d157219e5..c7fa878144565 100644
--- a/examples/chart/access/pagerduty/Chart.yaml
+++ b/examples/chart/access/pagerduty/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "16.0.0"
+.version: &version "16.0.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 a936eb9524a2c..70a05522cb9f1 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: 16.0.0
- helm.sh/chart: teleport-plugin-pagerduty-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-pagerduty-16.0.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 781f79ffbcccd..4a3518a8e175f 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: 16.0.0
- helm.sh/chart: teleport-plugin-pagerduty-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-pagerduty-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-pagerduty-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-pagerduty-16.0.1
spec:
containers:
- command:
diff --git a/examples/chart/access/slack/Chart.yaml b/examples/chart/access/slack/Chart.yaml
index fb726164cb4e3..10901a0e1e2f0 100644
--- a/examples/chart/access/slack/Chart.yaml
+++ b/examples/chart/access/slack/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "16.0.0"
+.version: &version "16.0.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 b7ec875ff1105..b4420d9980ced 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: 16.0.0
- helm.sh/chart: teleport-plugin-slack-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-slack-16.0.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 4b0f601f96b3c..ae22f8f6b2a52 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: 16.0.0
- helm.sh/chart: teleport-plugin-slack-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-slack-16.0.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: 16.0.0
- helm.sh/chart: teleport-plugin-slack-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-slack-16.0.1
spec:
containers:
- command:
diff --git a/examples/chart/event-handler/Chart.yaml b/examples/chart/event-handler/Chart.yaml
index bbae5b4560d17..2ac736572e41d 100644
--- a/examples/chart/event-handler/Chart.yaml
+++ b/examples/chart/event-handler/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "16.0.0"
+.version: &version "16.0.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 033e92fbfea2e..75bed9ce7501b 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: 16.0.0
- helm.sh/chart: teleport-plugin-event-handler-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-event-handler-16.0.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 c69b1cda8b5d2..4917c387a8baf 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: 16.0.0
- helm.sh/chart: teleport-plugin-event-handler-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-plugin-event-handler-16.0.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 82debe8d37d27..b5a4750607514 100644
--- a/examples/chart/teleport-cluster/Chart.yaml
+++ b/examples/chart/teleport-cluster/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "16.0.0"
+.version: &version "16.0.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 ddfca370de4c1..4558c5657acea 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 "16.0.0"
+.version: &version "16.0.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 213865367c1a8..cb7a743177d58 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: 16.0.0
- helm.sh/chart: teleport-cluster-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-cluster-16.0.1
teleport.dev/majorVersion: "16"
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 3b23d1fda6fdd..a2814a5600817 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: 16.0.0
- helm.sh/chart: teleport-cluster-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-cluster-16.0.1
teleport.dev/majorVersion: "16"
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 9a6b6a79cff62..7f3186c8e94a2 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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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 08da493d62257..e4e17ed93cb6b 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: 16.0.0
- helm.sh/chart: teleport-cluster-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-cluster-16.0.1
teleport.dev/majorVersion: "16"
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 e6862a47570b9..37b3274970fd6 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: 16.0.0
- helm.sh/chart: teleport-cluster-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-cluster-16.0.1
teleport.dev/majorVersion: "16"
name: RELEASE-NAME-proxy
namespace: NAMESPACE
@@ -26,7 +26,7 @@ sets clusterDomain on Deployment Pods:
template:
metadata:
annotations:
- checksum/config: bb7fd525f887fe6dff99bc83bf3bd9f656f38e9798a3cdba03d9e83c5e887b58
+ checksum/config: d5490cb40f0ebcb28fde4dae2c6527d37bb5281224ed08f145e4f84df2820a99
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: 16.0.0
- helm.sh/chart: teleport-cluster-16.0.0
+ app.kubernetes.io/version: 16.0.1
+ helm.sh/chart: teleport-cluster-16.0.1
teleport.dev/majorVersion: "16"
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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -105,7 +105,7 @@ sets clusterDomain on Deployment Pods:
- wait
- no-resolve
- RELEASE-NAME-auth-v15.NAMESPACE.svc.test.com
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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-v15.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -262,7 +262,7 @@ should set nodeSelector when set in values:
- wait
- no-resolve
- RELEASE-NAME-auth-v15.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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-v15.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -489,7 +489,7 @@ should set resources when set in values:
- wait
- no-resolve
- RELEASE-NAME-auth-v15.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -597,7 +597,7 @@ should set securityContext for initContainers when set in values:
- wait
- no-resolve
- RELEASE-NAME-auth-v15.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
@@ -705,7 +705,7 @@ should set securityContext when set in values:
- wait
- no-resolve
- RELEASE-NAME-auth-v15.NAMESPACE.svc.cluster.local
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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 c95656faa4fdd..505ea05c3625f 100644
--- a/examples/chart/teleport-kube-agent/Chart.yaml
+++ b/examples/chart/teleport-kube-agent/Chart.yaml
@@ -1,4 +1,4 @@
-.version: &version "16.0.0"
+.version: &version "16.0.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 627c605076e06..b6e2286dd4e4a 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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -105,7 +105,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -167,7 +167,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -229,7 +229,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -312,7 +312,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -375,7 +375,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -437,7 +437,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -497,7 +497,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -571,7 +571,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -645,7 +645,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -707,7 +707,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -769,7 +769,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -836,7 +836,7 @@ should mount jamfCredentialsSecret if it already exists and when role is jamf an
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -904,7 +904,7 @@ should mount jamfCredentialsSecret.name when role is jamf and action is Upgrade:
env:
- name: TELEPORT_INSTALL_METHOD_HELM_KUBE_AGENT
value: "true"
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -974,7 +974,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1046,7 +1046,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1114,7 +1114,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1234,7 +1234,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1296,7 +1296,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1371,7 +1371,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1495,7 +1495,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: Always
livenessProbe:
failureThreshold: 6
@@ -1557,7 +1557,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1621,7 +1621,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1695,7 +1695,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1757,7 +1757,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1820,7 +1820,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1892,7 +1892,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1954,7 +1954,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2023,7 +2023,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2085,7 +2085,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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 0e1c17e90e46f..efd5bcd46413b 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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
name: post-delete-job
securityContext:
@@ -106,7 +106,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
name: post-delete-job
securityContext:
@@ -136,7 +136,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
name: post-delete-job
securityContext:
@@ -166,7 +166,7 @@ should set nodeSelector in post-delete hook:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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 0b1bb34442d9f..da89eb7d0a34f 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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -86,7 +86,7 @@ sets Pod labels when specified:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -180,7 +180,7 @@ sets StatefulSet labels when specified:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -282,7 +282,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -352,7 +352,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -442,7 +442,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -522,7 +522,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -592,7 +592,7 @@ should expose diag port:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -662,7 +662,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -746,7 +746,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -828,7 +828,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -898,7 +898,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -968,7 +968,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1040,7 +1040,7 @@ should mount extraVolumes and extraVolumeMounts:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1115,7 +1115,7 @@ should mount jamfCredentialsSecret if it already exists and when role is jamf:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1193,7 +1193,7 @@ should mount jamfCredentialsSecret.name when role is jamf:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1273,7 +1273,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1355,7 +1355,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1433,7 +1433,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1503,7 +1503,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1631,7 +1631,7 @@ should set affinity when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1701,7 +1701,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1784,7 +1784,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -1924,7 +1924,7 @@ should set imagePullPolicy when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: Always
livenessProbe:
failureThreshold: 6
@@ -1994,7 +1994,7 @@ should set nodeSelector if set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2078,7 +2078,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2148,7 +2148,7 @@ should set probeTimeoutSeconds when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2228,7 +2228,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2298,7 +2298,7 @@ should set resources when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2375,7 +2375,7 @@ should set serviceAccountName when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2445,7 +2445,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2515,7 +2515,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -2585,7 +2585,7 @@ should set tolerations when set in values:
fieldPath: metadata.namespace
- name: RELEASE_NAME
value: RELEASE-NAME
- image: public.ecr.aws/gravitational/teleport-distroless:16.0.0
+ image: public.ecr.aws/gravitational/teleport-distroless:16.0.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 57ce75f6ac9a0..f7f82adfba27b 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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-kube-agent-updater:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6
@@ -73,7 +73,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:16.0.0
+ image: public.ecr.aws/gravitational/teleport-kube-agent-updater:16.0.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 6