1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-05-30 09:58:12 -04:00
parent 8c354f029b
commit 23d21f35d6

View File

@ -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 {