Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/trivy-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
format: sarif
output: chart/trivy-helm.sarif
severity: HIGH,CRITICAL

- name: Upload Helm SARIF
uses: github/codeql-action/upload-sarif@v4
with:
Expand Down Expand Up @@ -100,4 +100,4 @@ jobs:
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: trivy-image.sarif
category: trivy-image-${{ matrix.image }}
category: trivy-image-${{ matrix.image }}
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions chart/templates/mayastor/io/io-engine-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ spec:
- "--grpc-port={{ default 10124 .Values.io_engine.port }}"
- "--fmt-style={{ include "logFormat" . }}"
- "--ansi-colors={{ .Values.base.logging.color }}"
- "--rest-endpoint=http://{{ .Release.Name }}-api-rest:8081"
{{- end }}
volumes:
- name: device
Expand Down
6 changes: 6 additions & 0 deletions metrics-exporter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,9 @@ tonic = { workspace = true }
serde = { workspace = true }
mime = { workspace = true }
tracing = { workspace = true }

# OEP-4111: Node status metrics dependencies
openapi = { path = "../dependencies/control-plane/openapi" }
anyhow = { workspace = true }
humantime = { workspace = true }
url = { workspace = true }
1 change: 1 addition & 0 deletions metrics-exporter/src/bin/io_engine/collector/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use prometheus::{
};

pub(crate) mod nexus_stat;
pub(crate) mod node_status;
pub(crate) mod pool;
pub(crate) mod pool_stat;
pub(crate) mod replica_stat;
Expand Down
Loading
Loading