Use
Argo Workflows
Reference: official documentation.
Creating new templates
Create and deploy new ClusterWorkflowTemplates (CWT) in Argo Workflows:
-
Create a new
<name>.clusterworkflowtemplate.yamlfile: This file should define the ClusterWorkflowTemplate. For example:apiVersion: argoproj.io/v1alpha1
kind: ClusterWorkflowTemplate
metadata:
name: example-cwt
spec:
entrypoint: main
templates:
- name: main
steps:
- - name: step1
template: example-task
- name: example-task
container:
image: alpine:3.7
command: [sh, -c]
args: ["echo Hello, Argo Workflows!"] -
Place the file in the
components/argo-workflows-chart/assets/folder: Ensure the new file is located in the assets folder and has the.cwt.yamlsuffix. The ApplicationSet will automatically deploy the new file if it meets these criteria.
JupyterHub
Choosing an image
When using JupyterHub, you can select from a variety of base images to suit your needs. These images come pre-installed with different sets of libraries and tools. To choose a base image:
- Log in to JupyterHub.
- Select the desired base image from the dropdown menu. To add other choices, see our documentation
- Click "Start" to launch your server with the selected image.
Stopping a server
If you need to stop your JupyterHub server, if for example you do not need it anymore and other servers are not able to spawn du to resources usage, follow these steps:
- Log in to JupyterHub.
- Click on File in the top left corner.
- Select Hub Control Panel from the dropdown menu.
- Click the Stop My Server button.
This will terminate your current server session. You can restart it later if needed.