From 23d21f35d66c61b52b6624897fc7e92ebae2e268 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 30 May 2022 09:58:12 -0400 Subject: [PATCH] Fix typo Signed-off-by: Sebastian Malton --- src/common/k8s-api/endpoints/pod.api.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/k8s-api/endpoints/pod.api.ts b/src/common/k8s-api/endpoints/pod.api.ts index c1df7288c9..8e3aa51559 100644 --- a/src/common/k8s-api/endpoints/pod.api.ts +++ b/src/common/k8s-api/endpoints/pod.api.ts @@ -485,7 +485,7 @@ export interface SecretProjection { optional?: boolean; } -export interface ServiceAccountTokenProjectio { +export interface ServiceAccountTokenProjection { audience?: string; expirationSeconds?: number; path: string; @@ -495,7 +495,7 @@ export interface VolumeProjection { secret?: SecretProjection; downwardAPI?: DownwardAPIProjection; configMap?: ConfigMapProjection; - serviceAccountToken?: ServiceAccountTokenProjectio; + serviceAccountToken?: ServiceAccountTokenProjection; } export interface ProjectedSource {