forked from burningalchemist/sql_exporter
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix!(helm): adjust the logic for serviceAccount creation (burningalch…
…emist#513) * fix!: adjust the logic for serviceAccount creation * fix!(helm): set create to true by default
- Loading branch information
1 parent
84ee75c
commit 881da5b
Showing
7 changed files
with
22 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,22 +24,27 @@ service: | |
# example of prometheus usage | ||
# prometheus.io/scrape: "true" | ||
# prometheus.io/path: "/metrics" | ||
# -- Arbitrary sidecar containers list | ||
extraContainers: {} | ||
# - name: your_sidecar | ||
# image: gcr.io/your_image:your_tag | ||
# args: | ||
# resources: | ||
# requests:{} | ||
serviceAccount: | ||
# Specifies whether a service account should be created | ||
create: false | ||
# Annotations to add to the service account | ||
# -- Specifies whether a Service Account should be created, creates "sql-exporter" service account if true, unless | ||
# overriden. Otherwise, set to `default` if false, and custom service account name is not provided. Check all the | ||
# available parameters. | ||
create: true | ||
# -- References a custom Service Account if it already exists | ||
# name: "sql-exporter-custom-sa" | ||
# -- Annotations to add to the Service Account | ||
annotations: {} | ||
## example annotations ## | ||
# annotations: | ||
# iam.gke.io/gcp-service-account: [email protected] | ||
name: "" | ||
automountServiceAccountToken: false | ||
# -- Defines if token is automatically mounted to the pod after it has been created | ||
# automountServiceAccountToken: false | ||
# -- Resource limits and requests for the application controller pods | ||
resources: {} | ||
# limits: | ||
|