mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
fix(annotations): parse annotation keys in angular forms [r8s-170] (#233)
This commit is contained in:
parent
94d2e32b49
commit
e1388eff84
3 changed files with 9 additions and 5 deletions
|
@ -19,7 +19,8 @@ class KubernetesConfigurationConverter {
|
|||
res.IsRegistrySecret = secret.IsRegistrySecret;
|
||||
res.SecretType = secret.SecretType;
|
||||
if (secret.Annotations) {
|
||||
res.ServiceAccountName = secret.Annotations['kubernetes.io/service-account.name'];
|
||||
const serviceAccountAnnotation = secret.Annotations.find((a) => a.key === 'kubernetes.io/service-account.name');
|
||||
res.ServiceAccountName = serviceAccountAnnotation ? serviceAccountAnnotation.value : undefined;
|
||||
}
|
||||
res.Labels = secret.Labels;
|
||||
return res;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue