-
Notifications
You must be signed in to change notification settings - Fork 20
Support Additional printer columns for Gatling CR #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: Yoichi Kawasaki <yokawasa@gmail.com>
…columns Signed-off-by: Yoichi Kawasaki <yokawasa@gmail.com>
@@ -49,7 +49,7 @@ deployment.apps/gatling-operator-controller-manager created | |||
|
|||
All resources required for the Gatling operator, such as CRD and controller manager, are deployed using the command above. Now you're ready to deploy Gatling CR to run Gatling load testing. | |||
|
|||
The command above applies a Gatling Operator manifest of v0.5.0. Please change the version if necessary. You can check the version from the [Release page](https://github.com/st-tech/gatling-operator/releases). | |||
The command above applies a Gatling Operator manifest of v0.9.0. Please change the version if necessary. You can check the version from the [Release page](https://github.com/st-tech/gatling-operator/releases). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
v0.9.0
is going to be the next release version.
pod/gatling-sample01-runner-8rhl4 2/2 Running 0 24s | ||
pod/gatling-sample01-runner-cg8rt 2/2 Running 0 24s | ||
pod/gatling-sample01-runner-tkplh 2/2 Running 0 24s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gatling runner Pod is no longer a single container but multi-containers from this update #65
Signed-off-by: Yoichi Kawasaki <yokawasa@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great to me!
Description
Support Additional printer columns for Gatling CR so that useful Gatling status will be displayed with
kubectl get gatling <name>
commandFor example, currently
kubectl get gatling <name>
only display like this:With this update,
kubectl get gatling <name>
will display like this (more useful information for users):Testing
case1: runner of parallelism 3 with no report + no notification pattern
base gatling CR is this.
apply the manifest and see the result
Check if new additional printer columns are displayed
Check if
runnerCompletions
field is added in Gatling CR statuscase2: Runner of parallelism 3 with report + notification pattern
base gatling CR is this.
apply the manifest and see the result
Check if new additional printer columns are displayed
Check if
runnerCompletions
field is added in Gatling CR statusChecklist
Please check if applicable
Relevant issue #
#50