Skip to content

talberkoSB/jenkins-workshop

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jenkins CI/CD Pipelines Workshop Quick Start Guide

System Requirements:

  • 4GB available RAM.
  • 20GB available disk storage.

Getting started:

  1. Install prerequisites:

  2. Checkout this repository and change directory to the root of the repository.

  3. [Optional] Create a .env file and update your GitHub credentials and repository details. See .env.example file for reference. You'll need a GitHub API token with only the public_repo scope assigned to it.

  4. Launch or reset workshop:

    $ ./reset-workshop.sh
    Resetting Jenkins workshop: 'cicd-jenkins-workshop-1'...
    ...
    Switched to context "cicd-jenkins-workshop-1".
    Installing Jenkins...
    Done!
    
    
    ====================================================================================
    Jenkins Admin user URL:               http://192.168.39.20:32000/login
    Jenkins Admin user name:              admin
    Jenkins Admin user password:          secret
    GitHub WebHook URL: (Ngrok tunnel)    https://123456abc.ngrok.io/github-webhook/
    ====================================================================================
  5. [Optional] Update GitHub webhook URL in your GitHub repository settings.

  6. Login to the Jenkins web UI and enter your credentials. If you see the Welcome to ${WORKSHOP_NAME} Jenkins CI/CD! screen, you are ready!

Cleanup:

$ ./reset-workshop.sh cleanup

Troubleshooting

  • I'm getting a browser timeout error when trying to access the Jenkins UI /login page. Please try again to provision the lab by executing:

    ./reset-workshop.sh
  • I see the following error when executing ./reset-workshop.sh:

    zsh: command not found: minikube

    Please make sure you installed all the system requirements as per described in the Getting Started section.

  • I see the following message when executing ./reset-workshop.sh:

    The ‘hyperkit’ driver requires elevated permissions. The following commands will be executed:
    $ sudo chown root:wheel /Users/razalon/.minikube/bin/docker-machine-driver-hyperkit 
    $ sudo chmod u+s /Users/razalon/.minikube/bin/docker-machine-driver-hyperkit 

    Minikube is trying to update Hyperkit driver, this is normal. Please enter your operating system username and password and hit Enter.

Scala Project:

  • Run unit tests:
    $ sbt 'testOnly -- -n UnitTest'
  • Run "Slow" suite:
    $ sbt 'testOnly -- -n Slow'
  • Run all tests:
    $ sbt test

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 73.3%
  • Scala 26.7%