Skip to content

Commit

Permalink
docs(changelog): add info about allowed operations in orca (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbyron-sf committed Sep 6, 2022
1 parent 03e7221 commit 3874842
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion content/en/docs/releases/next-release-preview/index.md
Expand Up @@ -90,11 +90,25 @@ Addition of instance type metadata/ information to API response. See before-afte


### Orca
- Changes to adapt Igor API changes:
- Changes to adapt to Igor API changes:
- Introduce a feature flag in Orca to use the new Igor `stop` endpoint. By default, if not enabled the existing endpoint (`PUT /masters/{name}/jobs/{jobName}/stop/{queuedBuild}/{buildNumber}`) will be called
```
feature:
igor:
jobNameAsQueryParameter: true
```
See the changes [here](https://github.com/spinnaker/orca/pull/4294)

- https://github.com/spinnaker/orca/pull/4195 provides a way to limit the operations that orca performs, either globally, or for specific users. For example:

```
executions:
blockOrchestrationExecutions: true
allowedOrchestrationExecutions: # only applicable when blockOrchestrationExecutions: false
- name: updateApplication # eg. config to show how to set the name and allowAllUsers properties for an execution
allowAllUsers: true
- name: saveApplication # eg. config to show how to set just the name of an execution. It defaults to allowAllUsers: true
- name: savePipeline # eg. config to show how to set the name and permittedUsers properties for an execution
permittedUsers:
- "[email protected]"
```

0 comments on commit 3874842

Please sign in to comment.