Skip to content

Commit

Permalink
fix: add missing files for make bundle
Browse files Browse the repository at this point in the history
After running `make bundle` locally few files
got updated and new files also got added.

Signed-off-by: Madhu Rajanna <[email protected]>
  • Loading branch information
Madhu-1 committed Apr 22, 2022
1 parent cba46e1 commit f162aba
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bundle/manifests/lvm-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.name
image: quay.io/nibalach/lvm-operator:e2e
image: quay.io/ocs-dev/lvm-operator:latest
livenessProbe:
httpGet:
path: /healthz
Expand All @@ -310,7 +310,7 @@ spec:
allowPrivilegeEscalation: false
- command:
- /metricsexporter
image: quay.io/nibalach/lvm-operator:e2e
image: quay.io/ocs-dev/lvm-operator:latest
name: metricsexporter
resources: {}
securityContext:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,53 @@ spec:
for: 5m
labels:
severity: critical
- name: thin-pool-alert.rules
rules:
- alert: ThinPoolDataUsageAtThresholdNearFull
annotations:
description: Thin pool in the VolumeGroup is nearing full. Data deletion or
thin pool expansion is required.
message: Thin Pool data utilization in the VolumeGroup {{ $labels.device_class
}} has crossed 75 % on node {{ $labels.node }}. Free up some space or expand
the thin pool.
expr: |
topolvm_thinpool_data_percent > 75.00 and topolvm_thinpool_data_percent < 85.00
for: 5m
labels:
severity: warning
- alert: ThinPoolDataUsageAtThresholdCritical
annotations:
description: Thin pool in the VolumeGroup is critically full. Data deletion
or thin pool expansion is required.
message: Thin Pool data utilization in the VolumeGroup {{ $labels.device_class
}} has crossed 85 % on node {{ $labels.node }}. Free up some space or expand
the thin pool immediately.
expr: |
topolvm_thinpool_data_percent > 85.00
for: 5m
labels:
severity: critical
- alert: ThinPoolMetaDataUsageAtThresholdNearFull
annotations:
description: Thin pool metadata utitlization in the VolumeGroup is nearing
full. Data deletion or thin pool expansion is required.
message: Thin Pool metadata utilization in the VolumeGroup {{ $labels.device_class
}} has crossed 75 % on node {{ $labels.node }}. Free up some space or expand
the thin pool.
expr: |
topolvm_thinpool_metadata_percent > 75.00 and topolvm_thinpool_data_percent < 85.00
for: 5m
labels:
severity: warning
- alert: ThinPoolMetaDataUsageAtThresholdCritical
annotations:
description: Thin pool metadata ultilization in the VolumeGroup is critically
full. Data deletion or thin pool expansion is required.
message: Thin Pool metadata utilization in the VolumeGroup {{ $labels.device_class
}} has crossed 85 % on node {{ $labels.node }}. Free up some space or expand
the thin pool immediately.
expr: |
topolvm_thinpool_metadata_percent > 85.00
for: 5m
labels:
severity: critical

0 comments on commit f162aba

Please sign in to comment.