-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Allow overriding the default QA Mappings file
Moved ports questions to a separate category Co-authored-by: Harikrishnan Balagopal <[email protected]> Signed-off-by: Akash Nayak <[email protected]>
- Loading branch information
1 parent
2697164
commit 7d47def
Showing
7 changed files
with
184 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,80 @@ | ||
categories: | ||
- name: imageregistry | ||
# or use the flags --enable imageregistry/--disable imageregistry | ||
enabled: true | ||
questions: | ||
- move2kube.target.imageregistry.url | ||
- move2kube.target.imageregistry.namespace | ||
- move2kube.target.imageregistry.*.logintype | ||
- move2kube.target.imageregistry.*.password | ||
- name: sshkeys | ||
enabled: true | ||
questions: | ||
- move2kube.repo.keys.*.key | ||
- move2kube.repo.keys.pub.domain.*.pubkey | ||
- move2kube.repo.keys.pub.load | ||
- move2kube.repo.keys.load | ||
- move2kube.repo.keys.paths | ||
- move2kube.repo.keys.priv.*.password | ||
- name: storage | ||
enabled: true | ||
questions: | ||
- move2kube.storage.type.*.options | ||
- name: sourceanalyzer | ||
enabled: true | ||
questions: | ||
- move2kube.services.*.enable | ||
- move2kube.services.*.statefulset | ||
- move2kube.services.*.containerizationoption | ||
- move2kube.services.*.childProjects.*.publishprofile | ||
- move2kube.services.*.apacheconfig | ||
- move2kube.services.*.pythonmainfile | ||
- move2kube.services.*.pythonstartingfile | ||
- move2kube.services.*.dockerfileType | ||
- move2kube.services.*.childModules.*.enable | ||
- move2kube.services.*.childProjects.*.enable | ||
- move2kube.services.*.childModules.*.springBootProfiles | ||
- move2kube.services.*.mavenProfiles | ||
- name: cluster | ||
enabled: true | ||
questions: | ||
- move2kube.target.*.clustertype | ||
- move2kube.minreplicas | ||
- name: network | ||
enabled: true | ||
questions: | ||
- move2kube.services.*.*.servicetype | ||
- move2kube.services.*.*.urlpath | ||
- move2kube.services.*.ports | ||
- move2kube.services.*.port | ||
- move2kube.target.*.ingress.ingressclassname | ||
- move2kube.target.*.ingress.host | ||
- move2kube.target.*.ingress.tls | ||
- name: git | ||
enabled: true | ||
questions: | ||
- move2kube.vcs.git.name | ||
- move2kube.vcs.git.username | ||
- move2kube.vcs.git.email | ||
- move2kube.vcs.git.pass | ||
- name: cicd | ||
enabled: true | ||
questions: | ||
- move2kube.target.cicd.tekton.gitreposshsecret | ||
- move2kube.target.cicd.tekton.gitrepobasicauthsecret | ||
- move2kube.target.cicd.tekton.registrypushsecret | ||
- move2kube.transformers.kubernetes.argocd.namespace | ||
- name: transformers | ||
enabled: true | ||
questions: | ||
- move2kube.transformerselector | ||
- move2kube.spawncontainers | ||
- move2kube.transformers.types | ||
apiVersion: move2kube.konveyor.io/v1alpha1 | ||
kind: QAMappings | ||
metadata: | ||
name: DefaultQA-Mappings | ||
spec: | ||
categories: | ||
- name: imageregistry | ||
# or use the flags --enable imageregistry/--disable imageregistry | ||
enabled: true | ||
questions: | ||
- move2kube.target.imageregistry.url | ||
- move2kube.target.imageregistry.namespace | ||
- move2kube.target.imageregistry.*.logintype | ||
- move2kube.target.imageregistry.*.password | ||
- name: sshkeys | ||
enabled: true | ||
questions: | ||
- move2kube.repo.keys.*.key | ||
- move2kube.repo.keys.pub.domain.*.pubkey | ||
- move2kube.repo.keys.pub.load | ||
- move2kube.repo.keys.load | ||
- move2kube.repo.keys.paths | ||
- move2kube.repo.keys.priv.*.password | ||
- name: storage | ||
enabled: true | ||
questions: | ||
- move2kube.storage.type.*.options | ||
- name: sourceanalyzer | ||
enabled: true | ||
questions: | ||
- move2kube.services.*.enable | ||
- move2kube.services.*.statefulset | ||
- move2kube.services.*.containerizationoption | ||
- move2kube.services.*.childProjects.*.publishprofile | ||
- move2kube.services.*.apacheconfig | ||
- move2kube.services.*.pythonmainfile | ||
- move2kube.services.*.pythonstartingfile | ||
- move2kube.services.*.dockerfileType | ||
- move2kube.services.*.childModules.*.enable | ||
- move2kube.services.*.childProjects.*.enable | ||
- move2kube.services.*.childModules.*.springBootProfiles | ||
- move2kube.services.*.mavenProfiles | ||
- name: cluster | ||
enabled: true | ||
questions: | ||
- move2kube.target.*.clustertype | ||
- move2kube.minreplicas | ||
- name: network | ||
enabled: true | ||
questions: | ||
- move2kube.services.*.*.servicetype | ||
- move2kube.services.*.*.urlpath | ||
- move2kube.target.*.ingress.ingressclassname | ||
- move2kube.target.*.ingress.host | ||
- move2kube.target.*.ingress.tls | ||
- name: ports | ||
enabled: true | ||
questions: | ||
- move2kube.services.*.ports | ||
- move2kube.services.*.port | ||
- name: git | ||
enabled: true | ||
questions: | ||
- move2kube.vcs.git.name | ||
- move2kube.vcs.git.username | ||
- move2kube.vcs.git.email | ||
- move2kube.vcs.git.pass | ||
- name: cicd | ||
enabled: true | ||
questions: | ||
- move2kube.target.cicd.tekton.gitreposshsecret | ||
- move2kube.target.cicd.tekton.gitrepobasicauthsecret | ||
- move2kube.target.cicd.tekton.registrypushsecret | ||
- move2kube.transformers.kubernetes.argocd.namespace | ||
- name: transformers | ||
enabled: true | ||
questions: | ||
- move2kube.transformerselector | ||
- move2kube.spawncontainers | ||
- move2kube.transformers.types |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.