Skip to content

Commit

Permalink
Update master to release v1.93.0 (#1419)
Browse files Browse the repository at this point in the history
* Pin local chart dependencies in Chart.yaml files

* Add condition flags for dependencies

* Add condition flag for kube-state-metrics chart

* Add INGEST_POD_UID env variable + helm value

* Re-comment code + add clarification

* remove deprecated server port

* Add maxPrometheusQueryDurationMinutes setting

* Update values.yaml (#1342)

* Added SEK to supported currencies.

* Added in Customer Google Tag to values and environment variables

* Fixed tag names.

* Updated google analytics tag to be marked as enterprise.

* Fix duplicate app labels and expose Grafana PSP config (#1347)

* fix: fixed duplicate app labels in metric exporter

* fix: added default value for Grafana PSP

Co-authored-by: Ajay Tripathy <[email protected]>

* FIX prometheus ingress (#1375)

Co-authored-by: Volodymyr Lisnyi <[email protected]>

* cluster controller service key secret optional

This smooths the adoption path for cluster controller features, like
1-click request sizing, that don't require service keys. Cluster
controller will be updated to gracefully handle situations where these
keys don't exist.

* Reverse patch of #1361 into develop from v1.92

* Reverse patch of #1338 into develop from v1.92

* cluster controller to v0.0.6 for optional secret

* Changing version (#1381)

Changing to lastest version i.e. 1.92.0

* Fix PSP issue for Network-Costs if you want to run multiple kubecost maybe for Testing
Use Release Name instead of ServiceAccount Name for Role, ClusterRole and bindings.

* Adds an env var to the cost model indicating whether Grafana is enabled.

* Modified GRAFANA_ENABLED env var logic to be clearer

* Add athena workgroup to config

* fix cloud usage defaulting

* Remove GOGC tuning from cost-model

* Add github action to validate chart

* Bump to v1.93.0-rc.0

Commit auto-generated by release script.

* Bump to v1.93.0-rc.1

Commit auto-generated by release script.

* Bump to v1.93.0

Commit auto-generated by release script.

Co-authored-by: keith.hand <[email protected]>
Co-authored-by: keith.hand <[email protected]>
Co-authored-by: keith.hand <[email protected]>
Co-authored-by: Kaelan Patel <[email protected]>
Co-authored-by: Niko Kovacevic <[email protected]>
Co-authored-by: Naresh Agrawal <[email protected]>
Co-authored-by: Thomas Evans <[email protected]>
Co-authored-by: Thomas Evans <[email protected]>
Co-authored-by: Cameron Hall <[email protected]>
Co-authored-by: Ajay Tripathy <[email protected]>
Co-authored-by: Volodymyr <[email protected]>
Co-authored-by: Volodymyr Lisnyi <[email protected]>
Co-authored-by: Michael Dresser <[email protected]>
Co-authored-by: dschunack <[email protected]>
Co-authored-by: Daniel Ramich <[email protected]>
Co-authored-by: Dan Ramich <[email protected]>
Co-authored-by: Sean Holcomb <[email protected]>
Co-authored-by: Matt Bolt <[email protected]>
Co-authored-by: Kaelan Patel <[email protected]>
  • Loading branch information
20 people authored May 11, 2022
1 parent 6332d2e commit 8e8b38d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cost-analyzer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
appVersion: "1.93.0-rc.1"
appVersion: "1.93.0"
description: A Helm chart that sets up Kubecost, Prometheus, and Grafana to monitor
cloud costs.
name: cost-analyzer
version: "1.93.0-rc.1"
version: "1.93.0"
annotations:
"artifacthub.io/links": |
- name: Homepage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,11 @@ spec:
{{- end }}
- name : ETL_CLOUD_USAGE_ENABLED
{{- if kindIs "bool" .Values.kubecostModel.etlCloudUsage }}
value: {{ (quote .Values.kubecostModel.etlCloudUsage) | default (quote true) }}
value: {{ (quote .Values.kubecostModel.etlCloudUsage) }}
{{- else if kindIs "bool" .Values.kubecostModel.etlCloudAsset }}
value: {{ (quote .Values.kubecostModel.etlCloudAsset) | default (quote true) }}
value: {{ (quote .Values.kubecostModel.etlCloudAsset) }}
{{- else }}
value: "true"
{{- end }}
- name: CLOUD_ASSETS_EXCLUDE_PROVIDER_ID
value: {{ (quote .Values.kubecostModel.cloudAssetsExcludeProviderID) | default (quote false) }}
Expand Down

0 comments on commit 8e8b38d

Please sign in to comment.