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

feat: bump kubecost metric images (thanos, prometheus, alertmanager) #2729

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
22 changes: 0 additions & 22 deletions licenses.d2iq.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -268,16 +268,6 @@ resources:
- license_path: LICENSE
ref: ${image_tag}
url: https://github.com/rook/rook
- container_image: docker.io/thanosio/thanos:v0.15.0
sources:
- license_path: LICENSE
ref: ${image_tag}
url: https://github.com/thanos-io/thanos
- container_image: docker.io/thanosio/thanos:v0.29.0
sources:
- license_path: LICENSE
ref: ${image_tag}
url: https://github.com/thanos-io/thanos
- container_image: docker.io/velero/velero-plugin-for-aws:v1.7.0
sources:
- license_path: LICENSE
Expand Down Expand Up @@ -496,12 +486,6 @@ resources:
notice_path: NOTICE
ref: ${image_tag}
url: https://github.com/prometheus-operator/prometheus-operator
- container_image: quay.io/prometheus/alertmanager:v0.21.0
sources:
- license_path: LICENSE
notice_path: NOTICE
ref: ${image_tag}
url: https://github.com/prometheus/alertmanager
- container_image: quay.io/prometheus/alertmanager:v0.27.0
sources:
- license_path: LICENSE
Expand All @@ -514,12 +498,6 @@ resources:
notice_path: NOTICE
ref: ${image_tag}
url: https://github.com/prometheus/node_exporter
- container_image: quay.io/prometheus/prometheus:v2.35.0
sources:
- license_path: LICENSE
notice_path: NOTICE
ref: ${image_tag}
url: https://github.com/prometheus/prometheus
- container_image: quay.io/prometheus/prometheus:v2.54.1
sources:
- license_path: LICENSE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: centralized-kubecost-0.37.5-d2iq-defaults
name: centralized-kubecost-0.37.6-d2iq-defaults
namespace: ${releaseNamespace}
data:
values.yaml: |
Expand Down Expand Up @@ -94,15 +94,10 @@ data:
fullnameOverride: "kommander-kubecost-prometheus-kube-state-metrics"
priorityClassName: dkp-high-priority

configmapReload:
prometheus:
image:
tag: v0.5.0
alertmanager:
image:
tag: v0.5.0

thanos:
image:
repository: quay.io/thanos/thanos
tag: v0.36.1
fullnameOverride: "kommander-kubecost-thanos"
nameOverride: "kubecost-thanos"
priorityClassName: dkp-high-priority
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
wait: true
interval: 6h
retryInterval: 1m
path: ./services/centralized-kubecost/0.37.5/post-install-jobs
path: ./services/centralized-kubecost/0.37.6/post-install-jobs
dependsOn:
- name: centralized-kubecost-release
sourceRef:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
wait: true
interval: 6h
retryInterval: 1m
path: ./services/centralized-kubecost/0.37.5/release
path: ./services/centralized-kubecost/0.37.6/release
sourceRef:
kind: GitRepository
name: management
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
releaseName: centralized-kubecost
valuesFrom:
- kind: ConfigMap
name: centralized-kubecost-0.37.5-d2iq-defaults
name: centralized-kubecost-0.37.6-d2iq-defaults
targetNamespace: kubecost
---
apiVersion: v1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: kubecost-0.37.6-d2iq-defaults
name: kubecost-0.37.7-d2iq-defaults
namespace: ${releaseNamespace}
data:
values.yaml: |
Expand Down Expand Up @@ -47,8 +47,43 @@ data:
disabled: true
server:
priorityClassName: dkp-high-priority
image:
tag: v2.54.1
sidecarContainers:
- name: thanos-sidecar
image: quay.io/thanos/thanos:v0.36.1
args:
- sidecar
- --log.level=debug
- --tsdb.path=/data/
- --prometheus.url=http://127.0.0.1:9090
- --reloader.config-file=/etc/config/prometheus.yml
# Start of time range limit to serve. Thanos sidecar will serve only metrics, which happened
# later than this value. Option can be a constant time in RFC3339 format or time duration
# relative to current time, such as -1d or 2h45m. Valid duration units are ms, s, m, h, d, w, y.
- --min-time=-3h
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
ports:
- name: sidecar-http
containerPort: 10902
- name: grpc
containerPort: 10901
- name: cluster
containerPort: 10900
volumeMounts:
- name: config-volume
mountPath: /etc/config
- name: storage-volume
mountPath: /data
subPath: ""
alertmanager:
priorityClassName: dkp-high-priority
image:
tag: v0.27.0

grafana:
priorityClassName: dkp-high-priority
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
releaseName: kubecost
valuesFrom:
- kind: ConfigMap
name: kubecost-0.37.6-d2iq-defaults
name: kubecost-0.37.7-d2iq-defaults
targetNamespace: ${releaseNamespace}
---
apiVersion: v1
Expand Down
Loading