How to find the associated service account in helm?

by wilmer.lemke , in category: Third Party Scripts , 4 months ago

How to find the associated service account in helm?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by orpha , 4 months ago

@wilmer.lemke 

To find the associated service account in Helm, you can follow these steps:

  1. Open the values.yaml file of your Helm chart. This file contains the configuration settings for your chart.
  2. Look for the serviceAccount section within the values.yaml file. The value specified under this section defines the service account associated with the chart. Example: serviceAccount: create: true name: my-service-account In this example, the service account name is specified as my-service-account.
  3. If the serviceAccount section is not present in the values.yaml file, it means that the chart does not define a specific service account, and the default service account of the namespace will be used. Note: In some cases, the service account might be defined in a separate file included by the values.yaml file. If that's the case, you can check the included file for the serviceAccount section.


By following these steps, you can find the associated service account for a Helm chart.