Install using Helm - In this command we've set few values like namespace, pvc, sc - as created in intial steps; service type, jenkins master and slave resource requests and limit for fine grained usage of all resources under EKS
kubectl get sc -n jenkins
kubectl get pvc -n jenkins
kubectl get pv -n jenkins
helm list -n jenkins
kubectl get po -n jenkins
kubectl get pvc -n jenkins
When we want to use maven command line to upload zip type artifact to artifact repository then we don't want resources, compiler, surefire, install phases in maven process, only assembly would be enough. To skip particular phases go to each plugin's original website phase according to latest running plugin version download the same to our own project refer the skip phase configuration of particular phase, either it can be done command line or as part of the build-plugin-configuration. Example using POM.xml file <project> [...] <build> <plugins> <plugin> <groupId...
Comments
Post a Comment