Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
fajpunk committed Jan 8, 2025
1 parent d92bb91 commit dd05f8e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion applications/mobu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Continuous integration testing
|-----|------|---------|-------------|
| affinity | object | `{}` | Affinity rules for the mobu frontend pod |
| config.autostart | list | `[]` | Autostart specification. Must be a list of mobu flock specifications. Each flock listed will be automatically started when mobu is started. |
| config.available_services | list | `[]` | Which applications (tap, butler, etc.) are available in this environment. Notebooks can specify a `mobu.required_services` list in their metadata, and mobu will only run them if all services in that list are in this `available_services` list. See https://mobu.lsst.io/user_guide/in_repo_config.html#service-specific-notebooks |
| config.availableServices | list | `[]` | Which applications (tap, butler, etc.) are available in this environment. Notebooks can specify a `mobu.required_services` list in their metadata, and mobu will only run them if all services in that list are in this `availableServices` list. See https://mobu.lsst.io/user_guide/in_repo_config.html#service-specific-notebooks |
| config.githubCiApp | string | disabled. | Configuration for the GitHub CI app integration. See https://mobu.lsst.io/operations/github_ci_app.html#add-phalanx-configuration |
| config.githubRefreshApp | string | disabled. | Configuration for the GitHub refresh app integration. See https://mobu.lsst.io/operations/github_refresh_app.html#add-phalanx-configuration |
| config.logLevel | string | `"INFO"` | Log level. Set to 'DEBUG' to include the output from all flocks in the main mobu log. |
Expand Down
2 changes: 1 addition & 1 deletion applications/mobu/tests/github_ci_app_enabled_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ tests:
path: "data['config.yaml']"
value: |
autostart: []
available_services: []
availableServices: []
githubCiApp:
acceptedGithubOrgs:
- org1
Expand Down
2 changes: 1 addition & 1 deletion applications/mobu/tests/github_disabled_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tests:
path: "data['config.yaml']"
value: |
autostart: []
available_services: []
availableServices: []
githubCiApp: null
githubRefreshApp: null
logLevel: INFO
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tests:
path: "data['config.yaml']"
value: |
autostart: []
available_services: []
availableServices: []
githubCiApp: null
githubRefreshApp:
acceptedGithubOrgs:
Expand Down
10 changes: 6 additions & 4 deletions applications/mobu/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ ingress:
annotations: {}

config:
# -- Which applications (tap, butler, etc.) are available in this environment.
# Notebooks can specify a `mobu.required_services` list in their metadata, and mobu will only run them if all services in that list are in this `available_services` list.
# See https://mobu.lsst.io/user_guide/in_repo_config.html#service-specific-notebooks
available_services: []
# -- Which applications (tap, butler, etc.) are available in this
# environment. Notebooks can specify a `mobu.required_services` list in their
# metadata, and mobu will only run them if all services in that list are in
# this `availableServices` list. See
# https://mobu.lsst.io/user_guide/in_repo_config.html#service-specific-notebooks
availableServices: []

# -- Autostart specification. Must be a list of mobu flock specifications.
# Each flock listed will be automatically started when mobu is started.
Expand Down

0 comments on commit dd05f8e

Please sign in to comment.