Skip to content

Commit ecfbede

Browse files
author
Maxwell Dylla
committed
update resource limits and add debug
1 parent f236300 commit ecfbede

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Pulse Telemetry
22

3+
<!-- ![GitHub Actions Status](https://github.com/battery-pulse/pulse-telemetry/actions/workflows/CI.yml/badge.svg?branch=main)
4+
![Python Version](https://img.shields.io/badge/python-3.11-blue.svg) -->
5+
<!-- ![Docker Image Version](https://img.shields.io/docker/v/ghcr.io/battery-pulse/pulse-telemetry?label=Docker%20Image&sort=semver) -->
6+
7+
38
Welcome to the Pulse Telemetry repository. This project contains Spark applications designed to transform raw telemetry data into a series of structured schemas for comprehensive analysis. The flexible architecture allows for easy extension—developers can deploy additional Spark applications to create new schemas or enhance existing ones to meet evolving analytical needs.
49

510

tests/e2e/manifests/table-maintenance.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ spec:
4747
config:
4848
resources:
4949
cpu:
50+
min: "100m"
5051
max: "2"
5152
memory:
5253
limit: "1Gi"
@@ -55,6 +56,7 @@ spec:
5556
config:
5657
resources:
5758
cpu:
59+
min: "100m"
5860
max: "2"
5961
memory:
6062
limit: "1Gi"

tests/e2e/manifests/telemetry-statistics.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ spec:
4747
config:
4848
resources:
4949
cpu:
50+
min: "100m"
5051
max: "2"
5152
memory:
5253
limit: "1Gi"
@@ -55,6 +56,7 @@ spec:
5556
config:
5657
resources:
5758
cpu:
59+
min: "100m"
5860
max: "2"
5961
memory:
6062
limit: "1Gi"

tests/e2e/scripts/launch-spark-application.sh

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ if kubectl wait pods -l "job-name=$SPARK_APP_NAME" \
5151
fi
5252

5353
else
54+
kubectl get pods
5455
echo "SparkApplication failed or timed out."
5556
echo "Removing spark custom resource..."
5657
kubectl delete -f "$MANIFEST_FILE"

0 commit comments

Comments
 (0)