-
Change
apiVersion
from:- apiVersion: v1
(or
apiVersion: apps.openshift.io/v1
)to:
- apiVersion: apps/v1
-
Change
kind
from:kind: DeploymentConfig
to:
kind: Deployment
-
Change
spec.selectors
from:selector: name: ...
to:
selector: matchLabels: name: ...
-
Make sure
spec.template.spec.containers.image
is set, e.g.image: registry.access.redhat.com/rhscl/postgresql-${POSTGRESQL_VERSION}-rhel7 imagePullPolicy: Always
-
Remove
spec.triggers
section entirely
Forked from bmaupin/convert-deploymentconfig-to-deployment.md
Created
October 2, 2021 04:51
-
-
Save therevoman/f5f2895a2a31145dc6f169872ccedf9f to your computer and use it in GitHub Desktop.
Convert OpenShift DeploymentConfig to Kubernetes Deployment
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment