Skip to content

Commit b2ac0b9

Browse files
committed
Add RStudio and Code Server to fat image build
1 parent fed656a commit b2ac0b9

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

ansible/fatimage.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,33 +121,45 @@
121121
when: "'openhpc' in group_names"
122122

123123
# - import_playbook: portal.yml
124-
- name: Open Ondemand server (packages)
124+
- name: Open OnDemand server (packages)
125125
ansible.builtin.include_role:
126126
name: osc.ood
127127
tasks_from: install-package.yml
128128
vars_from: "Rocky/{{ ansible_distribution_major_version }}.yml"
129129
when: "'openondemand' in group_names"
130130
# # FUTURE: install-apps.yml - this is git clones
131131

132-
- name: Open Ondemand server (apps)
132+
- name: Open OnDemand server (apps)
133133
ansible.builtin.include_role:
134134
name: osc.ood
135135
tasks_from: install-apps.yml
136136
vars_from: "Rocky/{{ ansible_distribution_major_version }}.yml"
137137
when: "'openondemand' in group_names"
138138

139-
- name: Open Ondemand remote desktop
139+
- name: Open OnDemand remote desktop
140140
ansible.builtin.import_role:
141141
name: openondemand
142142
tasks_from: vnc_compute.yml
143143
when: "'openondemand_desktop' in group_names"
144144

145-
- name: Open Ondemand jupyter node
145+
- name: Open OnDemand Jupyter Notebook
146146
ansible.builtin.import_role:
147147
name: openondemand
148148
tasks_from: jupyter_compute.yml
149149
when: "'openondemand_jupyter' in group_names"
150150

151+
- name: Open OnDemand RStudio
152+
ansible.builtin.import_role:
153+
name: openondemand
154+
tasks_from: rstudio_compute.yml
155+
when: "'openondemand_rstudio' in group_names"
156+
157+
- name: Open OnDemand Code Server
158+
ansible.builtin.import_role:
159+
name: openondemand
160+
tasks_from: codeserver_compute.yml
161+
when: "'openondemand_codeserver' in group_names"
162+
151163
- name: Install Apache PAM module # Extracted from start of roles/openondemand/tasks/pam_auth.yml to ensure only installed during build
152164
ansible.builtin.dnf:
153165
name: mod_authnz_pam

0 commit comments

Comments
 (0)