Skip to content

Commit

Permalink
Added requestimages.md (CIROH-UA#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
arpita0911patel authored Jun 7, 2024
2 parents f1c0027 + d5ba528 commit d946553
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@ Follow these steps to allow 2i2c JupyterHub to push to GitHub repositories:
```bash
gh-scoped-creds --client-id Iv23lixIgj0sAZqz98bH
```
### You can also follow along with this [video tutorial](https://youtu.be/t6WkSpYDiaA) that walks you through the same process visually.
### You can also follow along with this video tutorial that walks you through the same process visually.


import VideoPlayer from '/src/components/VideoPlayer.js';


<VideoPlayer url="https://www.youtube.com/watch?v=t6WkSpYDiaA" />




Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
sidebar_position: 3
title: "Instructions for requesting custom images"
description: "2i2c JupyterHub is a cloud-based JupyterHub environment specifically designed for hydrological researchers. It is powered by 2i2c JupyterHub, a cloud-based JupyterHub environment specifically on Google Cloud"
tags:
- 2i2c
- JupyterHub
- GCP
- notebook
- custom images
- tutorial
---

# A Step-by-Step Guide: Requesting custom images
If you have a request for creating custom images, then please follow these instructions.
### 1. Create an environment.yml file:
- Open your terminal or command prompt. Make sure you have conda installed and activated in the environment that contains the packages you want to use for creating custom images. Learn more [here](https://conda.io/projects/conda/en/latest/user-guide/getting-started.html).

- Run the following command, replacing **ENVNAME** with the actual name of your environment.

```bash
conda env export -n ENVNAME > environment.yml
```

### 2. Submit a Request Form:


- Click on the link below to access the Jupyterhub (2i2c) Software Install form.
- Select Install Software on CIROH 2i2c JupyterHub as a reason for request.
- Fill out remaining sections of the form and submit it.

<a class="button button--active button--primary" href="https://forms.office.com/Pages/ResponsePage.aspx?id=jnIAKtDwtECk6M5DPz-8p4IIpHdEnmhNgjOa9FjrwGtUNUoyV1UxNFIzV1AyTDhTNzdOT1Q5NVlLTC4u"> JupyterHub (2i2c) Software Install Form</a>

### 3. Share your environment.yml file with CIROH-IT support

- After submitting the request form, attach the environment.yml file you created in step 1 to an email and send it to ciroh-it-support@ua.edu



15 changes: 13 additions & 2 deletions docs/services/cloudservices/ciroh jupyterhub/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,24 @@ If your software in not listed in this file, please submit the form below to req
### CIROH JupyterHub Environments:

Click on below button to access the CIROH JupyterHub environments (production and staging environments):

<a class="button button--active button--primary " href="https://ciroh.awi.2i2c.cloud/hub/login"> CIROH Production JupyterHub</a>

<a class="button button--active button--primary " href="https://staging.ciroh.awi.2i2c.cloud/hub/login"> CIROH Staging JupyterHub</a>

-----

:::note
Please remember to stop the server when you're not actively using it
:::

<a class="button button--active button--primary" href="https://ciroh.awi.2i2c.cloud/hub/login"> CIROH Production JupyterHub</a>

<a class="button button--active button--primary" href="https://staging.ciroh.awi.2i2c.cloud/hub/login"> CIROH Staging JupyterHub</a>
import VideoPlayer from '/src/components/VideoPlayer.js';


<VideoPlayer url="https://youtu.be/VSFs2bu4-74" />



_____

Expand Down
26 changes: 26 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-player": "^2.16.0",
"s": "^1.0.0",
"update": "^0.7.4"
},
Expand Down
8 changes: 8 additions & 0 deletions src/components/VideoPlayer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from 'react';
import ReactPlayer from 'react-player';

export default function VideoPlayer({ url }) {
return (
<ReactPlayer url={url} width="100%" height="400px" controls />
);
}

0 comments on commit d946553

Please sign in to comment.