Skip to content

Commit

Permalink
feat: priorityClassName support added
Browse files Browse the repository at this point in the history
  • Loading branch information
marnas committed Nov 22, 2024
1 parent 2f64656 commit ee6368d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions charts/gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ This section contains configuration of the Conduktor Gateway.
| `gateway.securityContext` | Container security context | `{}` |
| `gateway.volumes` | Define user specific volumes for Gateway deployment | `{}` |
| `gateway.volumeMounts` | Define user specific volumeMounts for Gateway container in deployment | `{}` |
| `gateway.priorityClassName` | Define Gateway pods' priority based on an existing ClassName | `""` |

### TLS configuration

Expand Down
3 changes: 3 additions & 0 deletions charts/gateway/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,6 @@ spec:
{{- with .Values.tolerations }}
tolerations: {{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.gateway.priorityClassName }}
priorityClassName: {{ .Values.gateway.priorityClassName | quote }}
{{- end }}
3 changes: 3 additions & 0 deletions charts/gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ gateway:
## @param gateway.volumeMounts Define user specific volumeMounts for Gateway container in deployment
volumeMounts: {}

## @param gateway.priorityClassName Define Gateway pods' priority based on an existing ClassName
priorityClassName: ""

## @section TLS configuration
## @descriptionStart
## This section is for configuring Gateway to handle certificate to manage TLS endpoint inside Gateway deployment.
Expand Down

0 comments on commit ee6368d

Please sign in to comment.