Skip to content

Commit be40a72

Browse files
committed
wip
Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
1 parent 2c9eafd commit be40a72

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

observability/install-observability.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ kubectl wait --for=condition=ready pod --all -n cert-manager --timeout=300s 2>/d
237237

238238
# Wait for observability pods
239239
echo -e "${YELLOW}Checking observability pods...${NC}"
240-
kubectl wait --for=condition=ready pod --all -n observability --timeout=300s
240+
kubectl wait --for=condition=ready pod --all -n observability --timeout=480s
241241

242242
echo -e "${GREEN}✓ All pods are ready${NC}"
243243

sample-operators/operations/src/test/java/io/javaoperatorsdk/operator/sample/metrics/OperationsE2E.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void setup() {
9696
@AfterAll
9797
void cleanup() throws IOException {
9898
if (!isLocal()) {
99-
helmUninstall();
99+
// helmUninstall();
100100
}
101101
closePortForward(prometheusPortForward);
102102
closePortForward(otelCollectorPortForward);
@@ -125,7 +125,7 @@ private void helmInstall() {
125125
namespace,
126126
"--wait",
127127
"--timeout",
128-
"2m");
128+
"5m");
129129
log.info("Helm release '{}' installed successfully", HELM_RELEASE_NAME);
130130
} catch (Exception e) {
131131
throw new RuntimeException("Failed to install helm chart", e);

0 commit comments

Comments
 (0)