We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
By default, a deployment is set to just a single replica
spec: replicas: 1 selector: deploymentconfig: "${SERVICE_NAME}" template: metadata: labels: deploymentconfig: "${SERVICE_NAME}"
In some scenarios would be useful to be able to set the number of replicas by a test.property configuration
ts.<your_service_name>.openshift.replicas=10
The text was updated successfully, but these errors were encountered:
In the middle time you could inject an Openshift client into your scenario and then scale your service
@Inject static OpenShiftClient openshift; @QuarkusApplication(classes = PongResource.class) static RestService pong = new RestService() .onPostStart(app -> openshift.scaleTo(app, 2))
Sorry, something went wrong.
No branches or pull requests
By default, a deployment is set to just a single replica
In some scenarios would be useful to be able to set the number of replicas by a test.property configuration
ts.<your_service_name>.openshift.replicas=10
The text was updated successfully, but these errors were encountered: