You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check the status of your job in the Lookout UI by visiting `http://localhost:30000` (assuming Armada was installed via the Quickstart guide and it is exposed via a NodePort service) in your browser.
133
133
134
+
## Migrations
135
+
136
+
### Migrating to v0.11 and beyond
137
+
138
+
Since v0.11, Armada Scheduler requires `permissionGroupsMapping` also to be configured.
139
+
140
+
Make sure the `applicationConfig` field in the Armada Scheduler CRD includes the `permissionGroupsMapping` field.
141
+
142
+
Quickstart example which allows anonymous auth:
143
+
```yaml
144
+
auth:
145
+
anonymousAuth: true
146
+
permissionGroupMapping:
147
+
submit_jobs: ["everyone"]
148
+
submit_any_jobs: ["everyone"]
149
+
create_queue: ["everyone"]
150
+
delete_queue: ["everyone"]
151
+
cancel_jobs: ["everyone"]
152
+
cancel_any_jobs: ["everyone"]
153
+
reprioritize_jobs: ["everyone"]
154
+
reprioritize_any_jobs: ["everyone"]
155
+
watch_events: ["everyone"]
156
+
watch_all_events: ["everyone"]
157
+
execute_jobs: ["everyone"]
158
+
```
159
+
134
160
## Documentation
135
161
136
162
For a step-by-step guide on how to install Armada using the Armada Operator and interact with the Armada API,
0 commit comments