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

chore/bump helm charts versions #33

Merged
merged 3 commits into from
Jun 11, 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
3 changes: 0 additions & 3 deletions try-me/observability/charts_values/grafana_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ sidecar:
enabled: true
dashboards:
enabled: true
grafana.ini:
feature_toggles:
enable: 'traceToMetrics = true'
datasources:
datasources.yaml:
apiVersion: 1
Expand Down
5 changes: 2 additions & 3 deletions try-me/observability/charts_values/loki_values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
minio:
minio: # enable MinIO Helm Chart installation
enabled: true
read:
replicas: 1
Expand All @@ -8,10 +8,9 @@ backend:
replicas: 1
chunksCache:
enabled: false

loki:
auth_enabled: false
storage_config:
storage_config: # configure storage mode
tsdb_shipper:
active_index_directory: /var/loki
cache_location: /var/loki
Expand Down
4 changes: 2 additions & 2 deletions try-me/observability/charts_values/mimir_values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mimir:
structuredConfig:
common:
storage:
storage: # configure storage backend for MinIO which is S3 compatible
backend: s3
s3:
bucket_name: mimir-metrics
Expand All @@ -27,7 +27,7 @@ global:
secretKeyRef:
name: loki-minio
key: rootPassword
minio:
minio: # disable MinIO Helm Chart installation because it is instaled with Loki Helm Chart
enabled: false
ingester:
replicas: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ admissionWebhooks:
manager:
collectorImage:
repository: "otel/opentelemetry-collector-contrib"
tag: "0.100.0" # helm chart uses 0.98.0 and adding new OpenInstrumentationCollector v1beta1 - not available as Helm Chart
10 changes: 5 additions & 5 deletions try-me/observability/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default async () => {
});
certManagerHelmChart = new HelmRelease('cert-manager', {
chartName: 'cert-manager',
chartVersion: '1.14.5',
chartVersion: '1.15.0',
chartNamespace: namespace,
chartValuesPath: './charts_values/cert_manager_values.yaml',
chartRepositoryUrl: 'https://charts.jetstack.io'
Expand All @@ -36,7 +36,7 @@ export default async () => {
if (config.installOpenTelemetryOperator) {
otelOperatorHelmChart = new HelmRelease('opentelemetry-operator', {
chartName: 'opentelemetry-operator',
chartVersion: '0.58.0',
chartVersion: '0.62.0',
chartNamespace: namespace,
chartValuesPath: './charts_values/opentelemetry_operator_values.yaml',
chartRepositoryUrl: 'https://open-telemetry.github.io/opentelemetry-helm-charts'
Expand All @@ -54,7 +54,7 @@ export default async () => {
if (config.installLoki) {
lokiHelmChart = new HelmRelease('loki', {
chartName: 'loki',
chartVersion: '6.2.1',
chartVersion: '6.6.3',
chartNamespace: namespace,
chartValuesPath: './charts_values/loki_values.yaml',
chartRepositoryUrl: 'https://grafana.github.io/helm-charts'
Expand Down Expand Up @@ -90,7 +90,7 @@ export default async () => {
if (config.installGrafana) {
new HelmRelease("grafana", {
chartName: "grafana",
chartVersion: "7.3.11",
chartVersion: "8.0.0",
chartNamespace: namespace,
chartValuesPath: "./charts_values/grafana_values.yaml",
chartRepositoryUrl: "https://grafana.github.io/helm-charts"
Expand All @@ -99,7 +99,7 @@ export default async () => {

new HelmRelease("kube-state-metrics", {
chartName: "kube-state-metrics",
chartVersion: "5.19.0",
chartVersion: "5.19.1",
chartNamespace: "kube-system",
chartValuesPath: "./charts_values/kube_state_metrics_values.yaml",
chartRepositoryUrl: "https://prometheus-community.github.io/helm-charts"
Expand Down