├── Jenkinsfiles ├── helloworld.groovy └── mvn.groovy ├── README.md ├── resources └── org │ └── dcube │ ├── checkov │ └── .checkov.yaml │ ├── dummy.json │ ├── hadolint │ └── .hadolint.yaml │ ├── notification │ └── notify.tpl │ └── trivy │ ├── html.tpl │ └── trivy.yml ├── src └── org │ └── dcube │ └── build │ └── HelloWorld.groovy └── vars ├── HelloWorld.groovy ├── checkovScan.groovy ├── emailNotification.groovy ├── gitCheckout.groovy ├── hadoLint.groovy ├── kaniko.groovy ├── maven.groovy ├── terraform.groovy ├── tfLint.groovy ├── trivyNotification.groovy └── trivyScan.groovy /Jenkinsfiles/helloworld.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/Jenkinsfiles/helloworld.groovy -------------------------------------------------------------------------------- /Jenkinsfiles/mvn.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/Jenkinsfiles/mvn.groovy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/README.md -------------------------------------------------------------------------------- /resources/org/dcube/checkov/.checkov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/resources/org/dcube/checkov/.checkov.yaml -------------------------------------------------------------------------------- /resources/org/dcube/dummy.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/org/dcube/hadolint/.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/resources/org/dcube/hadolint/.hadolint.yaml -------------------------------------------------------------------------------- /resources/org/dcube/notification/notify.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/resources/org/dcube/notification/notify.tpl -------------------------------------------------------------------------------- /resources/org/dcube/trivy/html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/resources/org/dcube/trivy/html.tpl -------------------------------------------------------------------------------- /resources/org/dcube/trivy/trivy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/resources/org/dcube/trivy/trivy.yml -------------------------------------------------------------------------------- /src/org/dcube/build/HelloWorld.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/src/org/dcube/build/HelloWorld.groovy -------------------------------------------------------------------------------- /vars/HelloWorld.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/HelloWorld.groovy -------------------------------------------------------------------------------- /vars/checkovScan.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/checkovScan.groovy -------------------------------------------------------------------------------- /vars/emailNotification.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/emailNotification.groovy -------------------------------------------------------------------------------- /vars/gitCheckout.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/gitCheckout.groovy -------------------------------------------------------------------------------- /vars/hadoLint.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/hadoLint.groovy -------------------------------------------------------------------------------- /vars/kaniko.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/kaniko.groovy -------------------------------------------------------------------------------- /vars/maven.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/maven.groovy -------------------------------------------------------------------------------- /vars/terraform.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/terraform.groovy -------------------------------------------------------------------------------- /vars/tfLint.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/tfLint.groovy -------------------------------------------------------------------------------- /vars/trivyNotification.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/trivyNotification.groovy -------------------------------------------------------------------------------- /vars/trivyScan.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiescamp/jenkins-shared-library/HEAD/vars/trivyScan.groovy --------------------------------------------------------------------------------