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

Ajay tripathy fix ne #1338

Merged
merged 34 commits into from
Mar 30, 2022
Merged
Show file tree
Hide file tree
Changes from 33 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6290579
Bump version to 1.91.0-rc.1
michaelmdresser Feb 24, 2022
9c19d4b
Merge pull request #1268 from kubecost/mmd/chart-version-fix-1.91.0-rc.1
michaelmdresser Feb 24, 2022
6062ceb
Merge pull request #1269 from kubecost/mmd/master-release-v1.91.0-rc.1
michaelmdresser Feb 25, 2022
e86b343
add generated yaml file
AjayTripathy Feb 25, 2022
51a9a46
Revert "Change method of checking if networking.k8s.io/v1/Ingress is …
kaelanspatel Feb 24, 2022
c611cf7
Fix isGLUUProvider env var parsing
nikovacevic Feb 28, 2022
f55f5a2
Merge cherry-picked patch commits for v1.91.0-rc.2
nikovacevic Mar 1, 2022
2af936e
Bump to v1.91.0-rc.2
nikovacevic Mar 1, 2022
1907457
Merge pull request #1283 from kubecost/bump-v1.91.0-rc.2
nikovacevic Mar 1, 2022
51e7d64
Release v1.91.0-rc.2 (#1286)
nikovacevic Mar 2, 2022
4986d77
add generated yaml file
AjayTripathy Mar 2, 2022
9de2f58
Bump to v1.91.0-rc.3
nikovacevic Mar 4, 2022
0f4db1f
Merge pull request #1290 from kubecost/bump-v1.91.0-rc.3
nikovacevic Mar 4, 2022
9b3bf6b
Release v1.91.0-rc.3 (#1291)
nikovacevic Mar 4, 2022
9791ab7
add generated yaml file
AjayTripathy Mar 4, 2022
a1c42bd
Bump to v1.91.0
nikovacevic Mar 8, 2022
1466c00
Merge pull request #1294 from kubecost/bump-v1.91.0
nikovacevic Mar 8, 2022
53d344c
Release v1.91.0 (#1295)
nikovacevic Mar 8, 2022
530dec5
add generated yaml file
AjayTripathy Mar 8, 2022
75cb1a9
Fix typo directly to master.
AjayTripathy Mar 10, 2022
2eb1ad9
Bump to v1.91.1
kaelanspatel Mar 14, 2022
39f8732
Merge pull request #1308 from kubecost/bump-v1.91.1
kaelanspatel Mar 14, 2022
5bdc60e
Release v1.91.1 (#1309)
AjayTripathy Mar 15, 2022
e4970aa
add generated yaml file
AjayTripathy Mar 15, 2022
437a033
Bump to v1.91.2
kaelanspatel Mar 15, 2022
57e107d
fix conflict
AjayTripathy Mar 16, 2022
f4c1ee6
bump version (#1314)
AjayTripathy Mar 16, 2022
8045b0c
Merge branch 'master' of https://github.com/kubecost/cost-analyzer-he…
AjayTripathy Mar 16, 2022
1ebc25b
add generated yaml file
AjayTripathy Mar 16, 2022
32680af
fix conflicts
AjayTripathy Mar 30, 2022
9aa8598
fix ne
AjayTripathy Mar 30, 2022
1359f34
actually fix to fallback to etlCloudAsset
AjayTripathy Mar 30, 2022
7864baf
default to true
AjayTripathy Mar 30, 2022
408754c
use KindIS function
AjayTripathy Mar 30, 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
Original file line number Diff line number Diff line change
Expand Up @@ -530,10 +530,10 @@ spec:
value: {{ (quote .Values.kubecostModel.etlToDisk) | default (quote true) }}
{{- end }}
- name : ETL_CLOUD_USAGE_ENABLED
{{- if eq .Values.kubecostModel.etlCloudAsset false }}
value: "false"
{{- else }}
{{- if .Values.kubecostModel.etlCloudUsage }}
value: {{ (quote .Values.kubecostModel.etlCloudUsage) | default (quote true) }}
{{- else if .Values.kubecostModel.etlCloudAsset }}
value: {{ (quote .Values.kubecostModel.etlCloudAsset) | default (quote true) }}
{{- end }}
- name: CLOUD_ASSETS_EXCLUDE_PROVIDER_ID
value: {{ (quote .Values.kubecostModel.cloudAssetsExcludeProviderID) | default (quote false) }}
Expand Down
Loading