-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
vars: | ||
NAMESPACE: galaxy | ||
admin_users: "{{ galaxy_admin_users | default('[email protected]') }}" | ||
brand: "{{ galaxy_brand | default('IM Deployed Galaxy K8s Cluster') }}" | ||
tasks: | ||
- name: Install Git | ||
package: name=git | ||
|
@@ -82,7 +83,7 @@ | |
galaxy.yml: | ||
galaxy: | ||
admin_users: {{ admin_users }} | ||
brand: IM Deployed Galaxy K8s Cluster | ||
brand: {{ brand }} | ||
- name: Deploy Galaxy | ||
command: helm install --create-namespace -n {{ NAMESPACE }} galaxy . --timeout 15m -f /opt/galaxy_values.yaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,10 @@ topology_template: | |
type: string | ||
description: Administrative users - set this to a comma-separated list of valid Galaxy users (email addresses). | ||
default: '[email protected]' | ||
galaxy_brand: | ||
type: string | ||
description: Brand for the Galaxy instance | ||
default: 'IM Deployed Galaxy K8s Cluster' | ||
|
||
# Restrict some K8s input values | ||
|
||
|
@@ -65,7 +69,7 @@ topology_template: | |
implementation: https://raw.githubusercontent.com/grycap/tosca/main/artifacts/k8s_galaxy.yml | ||
inputs: | ||
galaxy_admin_users: { get_input: galaxy_admin_users } | ||
|
||
galaxy_brand: { get_input: galaxy_brand } | ||
|
||
outputs: | ||
galaxy_endpoint: | ||
|