Please I am new to CI/CD generally, I have studied some of the jenkins-x docs, the following is the process we currently use:
1.) I am provided with a JAR URL file download (compiled by a different team entirely) and a respective version number.
2.) Then use a Dockerfile to build the image with the version number and push to AWS ECR.
3.) k8s deployment manifest file is updated with the new version number and deployed to the kubernetes cluster.
But there is no quickstarts templates for this kind of scenario, what is the best way to implement this with Jenkins-X?
https://github.com/jenkins-x/draft-packs/tree/master/packs/appserver -- This looks somehow close to what I want to achieve but am not entirely sure which parts I should remove from the Jenkins file/other files.
Also we use bitbucket server (was able to integrate this into jenkins-x), how should the trigger be configured.