-
Notifications
You must be signed in to change notification settings - Fork 118
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
bug: customizations directory doesn't seem to be used during planning? #1194
Comments
This custom transformer doesn't see to get picked up. Even though the apiVersion: move2kube.konveyor.io/v1alpha1
kind: Transformer
metadata:
name: MyCustomJarTransformer
labels:
move2kube.konveyor.io/task: containerization
spec:
class: "JarAnalyser"
directoryDetect:
levels: -1
consumes:
Service:
merge: false
Jar:
merge: false
produces:
Dockerfile:
disabled: false
DockerfileForService:
disabled: false
config:
defaultJavaVersion: "17" |
@HarikrishnanBalagopal I don't think the override was working. Its most probably removing it from the config made it disabled. |
Overview
Even though the
plan
command has a--customizations
flagThe customization directory does not seem to actually be used during planning?
move2kube/lib/planner.go
Line 48 in c1a0f8a
The
CheckAndCopyCustomizations
function is defined inutils.go
, tested inutils_test.go
and only used intransform.go
The text was updated successfully, but these errors were encountered: