diff --git a/.github/workflows/test-v1.yml b/.github/workflows/test-v1.yml index 7ac6c4016..1f29f2463 100644 --- a/.github/workflows/test-v1.yml +++ b/.github/workflows/test-v1.yml @@ -176,7 +176,7 @@ jobs: helm install alloy grafana/alloy -f "${GRAFANA_ALLOY_VALUES}" -n alloy --create-namespace --wait # This prometheus instance is used pod annotation testing with https - helm install prometheus-workload prometheus-community/prometheus -f "${PROMETHEUS_WORKLOAD_VALUES}" -n prometheus --create-namespace --wait + helm install prometheus-workload prometheus-community/prometheus -f "${PROMETHEUS_WORKLOAD_VALUES}" -n prometheus --create-namespace --timeout 10m --wait # Deploy the Prometheus Operator CRDs, since we want to deploy Loki with a ServiceMonitor later helm install prom-crds prometheus-community/prometheus-operator-crds --wait @@ -184,7 +184,7 @@ jobs: - name: Deploy Prometheus if: (steps.list-changed.outputs.changed == 'true') || (contains(github.event.pull_request.labels.*.name, 'full_test_required')) run: | - helm install prometheus prometheus-community/prometheus -f "${PROMETHEUS_VALUES}" -n prometheus --create-namespace --wait + helm install prometheus prometheus-community/prometheus -f "${PROMETHEUS_VALUES}" -n prometheus --create-namespace --timeout 10m --wait - name: Deploy Loki if: (steps.list-changed.outputs.changed == 'true') || (contains(github.event.pull_request.labels.*.name, 'full_test_required'))