[HAL-2043] Add tests for SSL Context parameters for JGroups subsystem#143
[HAL-2043] Add tests for SSL Context parameters for JGroups subsystem#143marekkopecky wants to merge 1 commit intohal:mainfrom
Conversation
| * | ||
| * @category Containers util | ||
| */ | ||
| startWildflyContainerHa(): Chainable<unknown>; |
There was a problem hiding this comment.
You don't need method like this. you can set different standalone.xml in parameter of the function. startWildflyContainer like this https://github.com/hal/berg/blob/main/packages/testsuite/cypress/e2e/opentelemetry/test-configuration-subsystem-opentelemetry.cy.ts#L20
You saw a startWildflyContainerSecured which is similar. You could think we need similar method like this for HA. But the reason why we created the secured variant are OIDC test. We need different networking for it. The wildfly and keycloak are started and as services on "local" server. NonSecured variant have a it own network and IP so you are using the container IP which have exposed some services you need. like UI, management API etc.
If it is only about different "standalone.xml" please set it as a parameter without a new method.
TBD