Replace DeploymentConfig in openshift quickstarts to avoid warning in output#682
Replace DeploymentConfig in openshift quickstarts to avoid warning in output#682xingxingxia wants to merge 1 commit intokeycloak:mainfrom
Conversation
|
@mposolda , could you help review / approve? Thank you! |
|
@vmuzikar I'm ok with this change. However I'm not sure we should even be using a Deployment given we recommend against that in the scaling guide. If I understand correct it's still a longer-term goal to support parrallel StatefulSets or Deployments cc @ahus1 @mhajas As long as it's understood this is for a single replica for now, we should be good. |
|
@shawkins - I agree to proceed with this PR. Still I know that there are a lot of bad practices in this example. This not being StatefulSet is one thing, missing startup probe another as well as using |
Currently, the YAML manifests use DeploymentConfig and produce a deprecation warning:
This PR updates to use Deployment, which doesn't produce warning now:
@vmuzikar , could you help review/approve if having no objection? Thanks!