Skip to content

Move jupyter openondemand installation to fatimage #414

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion ansible/fatimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,25 @@
tasks_from: install.yml

# - import_playbook: portal.yml
- name: Open Ondemand server
- name: Open Ondemand server (packages)
include_role:
name: osc.ood
tasks_from: install-package.yml
vars_from: "Rocky/{{ ansible_distribution_major_version }}.yml"
# # FUTURE: install-apps.yml - this is git clones
- name: Open Ondemand server (apps)
include_role:
name: osc.ood
tasks_from: install-apps.yml
vars_from: "Rocky/{{ ansible_distribution_major_version }}.yml"
- name: Open Ondemand remote desktop
import_role:
name: openondemand
tasks_from: vnc_compute.yml
- name: Open Ondemand jupyter node
import_role:
name: openondemand
tasks_from: jupyter_compute.yml

# - import_playbook: monitoring.yml:
- import_role:
Expand Down
6 changes: 3 additions & 3 deletions environments/.stackhpc/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ variable "cluster_image" {
description = "single image for all cluster nodes, keyed by os_version - a convenience for CI"
type = map(string)
default = {
# https://github.com/stackhpc/ansible-slurm-appliance/pull/410
RL8: "openhpc-RL8-240712-1426-6830f97b"
RL9: "openhpc-ofed-RL9-240712-1425-6830f97b"
# https://github.com/stackhpc/ansible-slurm-appliance/pull/414
RL8: "openhpc-RL8-240723-0907-b560bf4c"
RL9: "openhpc-ofed-RL9-240723-0907-b560bf4c"
}
}

Expand Down
Loading