Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update master to release v1.93.2 #1438

Merged
merged 46 commits into from
May 24, 2022
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
6ef8889
Pin local chart dependencies in Chart.yaml files
keithhand Jan 5, 2022
7301981
Merge branch 'kubecost:develop' into keithhand-pin-chart-dependencies
keithhand Jan 20, 2022
d80791a
Add condition flags for dependencies
keithhand Jan 21, 2022
2a79e87
Add condition flag for kube-state-metrics chart
keithhand Jan 21, 2022
7acdd2c
Add INGEST_POD_UID env variable + helm value
kaelanspatel Mar 24, 2022
2d7a082
Re-comment code + add clarification
kaelanspatel Mar 24, 2022
9a34ed8
remove deprecated server port
keithhand Mar 31, 2022
9a6aa8a
Add maxPrometheusQueryDurationMinutes setting
nikovacevic Mar 31, 2022
ca8e995
Merge pull request #1339 from kubecost/keithhand/remove-deprecated-se…
keithhand Apr 1, 2022
c98f485
Update values.yaml (#1342)
nareshagrawal Apr 1, 2022
2063d9c
Added SEK to supported currencies.
teevans Apr 8, 2022
6b3e8d3
Merge pull request #1357 from kubecost/thomas/swedish-kronor
teevans Apr 8, 2022
8714520
Added in Customer Google Tag to values and environment variables
teevans Apr 15, 2022
b824702
Merge pull request #1373 from kubecost/thomas/gtagconfig
teevans Apr 15, 2022
c095a53
Fixed tag names.
teevans Apr 15, 2022
364c15b
Updated google analytics tag to be marked as enterprise.
teevans Apr 15, 2022
89438b0
Fix duplicate app labels and expose Grafana PSP config (#1347)
CameronHall Apr 18, 2022
11c3a88
FIX prometheus ingress (#1375)
vova3379 Apr 18, 2022
b60bf60
cluster controller service key secret optional
michaelmdresser Apr 18, 2022
da72b71
Reverse patch of #1361 into develop from v1.92
michaelmdresser Apr 18, 2022
a08adb4
Reverse patch of #1338 into develop from v1.92
michaelmdresser Apr 18, 2022
2b68dfa
cluster controller to v0.0.6 for optional secret
michaelmdresser Apr 18, 2022
1f3cc6a
Merge pull request #1380 from kubecost/mmd/reverse-patch-1.92-fixes
michaelmdresser Apr 18, 2022
805d9db
Changing version (#1381)
nareshagrawal Apr 18, 2022
1718222
Merge pull request #1374 from kubecost/thomas/googlerename
teevans Apr 19, 2022
ed16d3b
Merge pull request #1379 from kubecost/mmd/cluster-controller-optiona…
michaelmdresser Apr 19, 2022
d72ca06
Fix PSP issue for Network-Costs if you want to run multiple kubecost …
dschunack Apr 1, 2022
6d995ca
Merge pull request #1192 from keithhand/keithhand-pin-chart-dependencies
keithhand Apr 20, 2022
abbe3e6
Merge pull request #1341 from kubecost/niko/prom-max-query
nikovacevic Apr 21, 2022
f84b90d
Adds an env var to the cost model indicating whether Grafana is enabled.
nealormsbee Apr 14, 2022
2d7e15c
Modified GRAFANA_ENABLED env var logic to be clearer
nealormsbee Apr 20, 2022
79abed6
Add athena workgroup to config
dramich Apr 25, 2022
dee0f50
Merge pull request #1386 from kubecost/ramich-athena
dramich Apr 25, 2022
6577659
fix cloud usage defaulting
Sean-Holcomb Apr 26, 2022
9541af0
Merge pull request #1388 from kubecost/sean/cloud-usage-default
Sean-Holcomb Apr 26, 2022
624955c
Remove GOGC tuning from cost-model
mbolt35 Apr 27, 2022
82c42ae
Merge pull request #1394 from kubecost/bolt/gogc-normal
mbolt35 Apr 27, 2022
dd5d012
Merge pull request #1327 from kubecost/kaelan-ingest-pod-uid
kaelanspatel Apr 28, 2022
af2bbed
Add github action to validate chart
dramich Apr 28, 2022
3a429cb
Merge pull request #1396 from kubecost/ramich-action-time
dramich Apr 29, 2022
2271e1f
Bump to v1.93.0-rc.0
nealormsbee May 3, 2022
71704eb
Bump to v1.93.0-rc.1
nealormsbee May 9, 2022
e811c4b
Bump to v1.93.0
nealormsbee May 10, 2022
307b5b3
Bump to v1.93.1
nealormsbee May 13, 2022
9a724ba
vbumpb
nealormsbee May 13, 2022
22827a6
Merge branch 'master' into ndo/master-release-v1.93.2
AjayTripathy May 24, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix cloud usage defaulting
  • Loading branch information
Sean-Holcomb committed Apr 26, 2022
commit 6577659d0853316d6ccf15b866b06eb88c1b0eff
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