Skip to content

Commit

Permalink
more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
patriknw committed Dec 6, 2023
1 parent ca3b500 commit f6f8f47
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
- name: REQUIRED_CONTACT_POINT_NR
value: "3"
- name: JAVA_TOOL_OPTIONS
value: "-XX:InitialRAMPercentage=60 -XX:MaxRAMPercentage=60 -Dakka.rollingupdate.kubernetes.custom-resource.enabled=on"
value: "-XX:InitialRAMPercentage=60 -XX:MaxRAMPercentage=60 -Xlog:gc -Dakka.rollingupdate.kubernetes.custom-resource.enabled=on"
#deployment
---
#rbac-reader
Expand Down
9 changes: 9 additions & 0 deletions integration-test/scripts/rollingupdate-kubernetes-cr-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ do
then
break
fi

echo ""
echo "Logs from all $APP_NAME containers"
kubectl logs -l app=$APP_NAME --all-containers=true -n $NAMESPACE

echo ""
echo "Logs from all previous $APP_NAME containers"
kubectl logs -p -l app=$APP_NAME --all-containers=true -n $NAMESPACE

sleep 4
done

Expand Down

0 comments on commit f6f8f47

Please sign in to comment.