# Problem w/ Ocean Blue

**URL:** https://community.jenkins.io/t/problem-w-ocean-blue/16451
**Category:** Using Jenkins
**Created:** [June 27, 2024, 2:09pm UTC](https://community.jenkins.io/t/problem-w-ocean-blue/16451 "2024-06-27T14:09:50Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![kaisers0s3](https://avatars.discourse-cdn.com/v4/letter/k/3e96dc/32.png) [@kaisers0s3](https://community.jenkins.io/u/kaisers0s3)
#### Post date: [June 27, 2024, 2:09pm UTC](https://community.jenkins.io/t/problem-w-ocean-blue/16451/1 "2024-06-27T14:09:50Z")

</div>

hi folks, i just created a jenkins server.  
i installed the default plugins  
Then i installed blue ocean  
i opened blue ocean and connected to the following repository  
[GitHub - kaisers0s3/cloudbeestraining: cloudbeestraining](https://github.com/kaisers0s3/cloudbeestraining.git) which is public  
the Jenkinsfile has the following-  
pipeline {  
agent any  
stages {  
stage(‘Fluffy Build’) {  
steps {  
echo ‘Placeholder’  
sh ‘echo Edited Placeholder.’  
}  
}  
stage(‘Fluffy Test’) {  
steps {  
sh ‘sleep 5’  
sh ‘echo Success!’  
}  
}  
stage(‘Fluffy Deploy’) {  
steps {  
echo ‘Placeholder’  
}  
}  
}  
}

then i get this error-  
 ![image](https://europe1.discourse-cdn.com/flex013/uploads/jenkins/original/2X/8/8e798df4470e28f62a23e17b7e572c4bb66780ab.png)

does anyone have any idea why this won’t work?

i am in my first year of jenkins-  
version is 2.452.2  
blue ocean plugin is 1.27.13

not finding much in google so anything will help.

I hope to become a part of the jenkins community i love this product!!  
i am a 30 year infr/systems/virtualization engineer who is trying to work in the cloud, so please bare w/ me lol

---

<div class="post-metadata">

### Author: ![kaisers0s3](https://avatars.discourse-cdn.com/v4/letter/k/3e96dc/32.png) [@kaisers0s3](https://community.jenkins.io/u/kaisers0s3)
#### Post date: [June 27, 2024, 7:13pm UTC](https://community.jenkins.io/t/problem-w-ocean-blue/16451/2 "2024-06-27T19:13:01Z")

</div>

i figured out the problem. i was choosing Git instead of Github when creating a pipeline. i chose Github and entered my github URL, then i needed to create an access key on github, then it all worked.

---

<div class="post-metadata">

### Author: ![sodul](https://dub1.discourse-cdn.com/flex013/user_avatar/community.jenkins.io/sodul/32/7828_2.png) [@sodul](https://community.jenkins.io/u/sodul)
#### Post date: [June 28, 2024, 11:07pm UTC](https://community.jenkins.io/t/problem-w-ocean-blue/16451/3 "2024-06-28T23:07:09Z")

</div>

If you are using GitHub, and if possible, I recommend that you create a GitHub application for jenkins. This will have entirely separate privileges from GitHub users and it has a larger API rate limit: 15k/h vs 5k/h for regular users.

There is documentation about this with the GitHub plugin.
