Skip to content

Commit

Permalink
Another fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jogrogan committed Jan 16, 2025
1 parent 5cde7a9 commit cb12a2f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,16 @@ jobs:
- name: Capture Cluster State
if: always()
run: |
kubectl describe pods
kubectl describe pods -n kafka
kubectl describe deployments
kubectl describe kafkas -n kafka
kubectl describe flinkdeployments
kubectl describe subscriptions
kubectl get pods
kubectl get svc
kubectl get deployments
kubectl get pods -n kafka
kubectl get svc -n kafka
kubectl get deployments -n kafka
kubectl get kafkas -n kafka
kubectl get flinkdeployments
kubectl get subscriptions
kubectl get pipelines
- name: Capture Flink Job Logs
if: always()
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ integration-tests: deploy-dev-environment deploy-samples
kubectl wait kafka.kafka.strimzi.io/one --for=condition=Ready --timeout=10m -n kafka
kubectl wait kafkatopic.kafka.strimzi.io/existing-topic-1 --for=condition=Ready --timeout=10m -n kafka
kubectl wait kafkatopic.kafka.strimzi.io/existing-topic-2 --for=condition=Ready --timeout=10m -n kafka
kubectl port-forward -n kafka svc/one-kafka-external-0 9092 & echo $$! > port-forward.pid
kubectl port-forward -n kafka svc/one-kafka-external-bootstrap 9092 & echo $$! > port-forward.pid
./gradlew intTest; echo $$? > exit-code.status;
kill `cat port-forward.pid`
exit `cat exit-code.status`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The below setup will create a dev environment with various resources within Kube
```
$ make install # build and install SQL CLI
$ make deploy-dev-environment # start all local dev setups
$ kubectl port-forward -n kafka svc/one-kafka-external-0 9092 & # forward external Kafka port for use by SQL CLI
$ kubectl port-forward -n kafka svc/one-kafka-external-bootstrap 9092 & # forward external Kafka port for use by SQL CLI
$ ./hoptimator # start the SQL CLI
> !intro
```
Expand Down

0 comments on commit cb12a2f

Please sign in to comment.