Skip to content

Commit

Permalink
Issues 7103 add priority class to helm (#7395)
Browse files Browse the repository at this point in the history
* Cascade terminate/Purge Workflow Support (#7340)

* Updating protos

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* enable recursive terminate/purge

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* Updating dtf-go

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* updating contrib

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* Correct proto generated files

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* update comment

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* implementing getOrchestrationRuntimeState

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* Adding unit tests

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* make modtidy-all

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* Adding recursive option in query parameter

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* Adding integration test for workflow

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* fix bug in Creating sub-orchestrations

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* Setting recursive/terminate purge to default and adding tests for same

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* linter fixes

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* Removing fix from this PR

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* renaming  to

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

* linter fixes

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>

---------

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>
Co-authored-by: Mukundan Sundararajan <65565396+mukundansundar@users.noreply.github.com>
Co-authored-by: Loong Dai <long.dai@intel.com>
Co-authored-by: Dapr Bot <56698301+dapr-bot@users.noreply.github.com>
Signed-off-by: Viktor Subota <viktor.subota@c.delinea.com>

* Add priorityClassName parameter to Helm chart

Signed-off-by: Viktor Subota <viktor.subota@c.delinea.com>

* Add priorityClassName to README doc

Signed-off-by: Viktor Subota <viktor.subota@c.delinea.com>

---------

Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>
Signed-off-by: Viktor Subota <viktor.subota@c.delinea.com>
Co-authored-by: Shivam Kumar <shivamkm07@gmail.com>
Co-authored-by: Mukundan Sundararajan <65565396+mukundansundar@users.noreply.github.com>
Co-authored-by: Loong Dai <long.dai@intel.com>
Co-authored-by: Dapr Bot <56698301+dapr-bot@users.noreply.github.com>
Co-authored-by: Viktor Subota <viktor.subota@c.delinea.com>
  • Loading branch information
6 people committed Jan 19, 2024
1 parent 8c5551d commit 21095cb
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 1 deletion.
3 changes: 2 additions & 1 deletion charts/dapr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ The Helm chart has the follow configuration options that can be supplied:
| `global.reminders.serviceName` | Name of the service that provides reminders functionality. If empty (the default), uses the built-in reminders capabilities in Dapr sidecars. | |
| `global.seccompProfile` | SeccompProfile for Dapr control plane services | `""` |
| `global.rbac.namespaced` | Removes cluster wide permissions where applicable | `false` |
| `global.argoRolloutServiceReconciler.enabled` | Enable the service reconciler for Dapr-enabled Argo Rollouts | `false` |
| `global.argoRolloutServiceReconciler.enabled` | Enable the service reconciler for Dapr-enabled Argo Rollouts | `false` |
| `global.priorityClassName` | Adds `priorityClassName` to Dapr pods | `""` |

### Dapr Operator options:
| Parameter | Description | Default |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,3 +233,7 @@ spec:
tolerations:
{{ toYaml .Values.global.tolerations | indent 8 }}
{{- end }}
{{- if .Values.global.priorityClassName }}
priorityClassName:
{{ toYaml .Values.global.priorityClassName | indent 8 }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -269,4 +269,8 @@ spec:
{{- end }}
{{- end }}
{{- end }}
{{- if .Values.global.priorityClassName }}
priorityClassName:
{{ toYaml .Values.global.priorityClassName | indent 8 }}
{{- end }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,7 @@ spec:
tolerations:
{{ toYaml .Values.global.tolerations | indent 8 }}
{{- end }}
{{- if .Values.global.priorityClassName }}
priorityClassName:
{{ toYaml .Values.global.priorityClassName | indent 8 }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -271,4 +271,8 @@ spec:
tolerations:
{{ toYaml .Values.global.tolerations | indent 8 }}
{{- end }}
{{- if .Values.global.priorityClassName }}
priorityClassName:
{{ toYaml .Values.global.priorityClassName | indent 8 }}
{{- end }}
{{- end }}
1 change: 1 addition & 0 deletions charts/dapr/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ global:
# - pullSecret2
imagePullSecrets: ""

priorityClassName: ""
nodeSelector: {}
tolerations: []
rbac:
Expand Down

0 comments on commit 21095cb

Please sign in to comment.