Skip to content

Commit

Permalink
fix(ui) Update pod security context value referencein Studio UI (#274)
Browse files Browse the repository at this point in the history
* fix(ui) Update pod security context value referencein Studio UI

The pod security context has been updated to use .Values.studioUi.podSecurityContext instead of .Values.studioWorker.podSecurityContext in the deployment-studio-ui.yaml file. In addition, the version of the studio chart has been incremented from 0.9.1 to 0.9.2.

* Helm-Docs update

---------

Co-authored-by: Marcin Jasion <[email protected]>
  • Loading branch information
mjasion and mjasion authored Jan 3, 2024
1 parent b9fc122 commit e903ab6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/studio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: studio
description: A Helm chart for Kubernetes
type: application
version: 0.9.1
version: 0.9.2
appVersion: "v2.72.0"
maintainers:
- name: iterative
Expand Down
2 changes: 1 addition & 1 deletion charts/studio/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# studio

![Version: 0.9.0](https://img.shields.io/badge/Version-0.9.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.73.0](https://img.shields.io/badge/AppVersion-v2.73.0-informational?style=flat-square)
![Version: 0.9.2](https://img.shields.io/badge/Version-0.9.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.72.0](https://img.shields.io/badge/AppVersion-v2.72.0-informational?style=flat-square)

A Helm chart for Kubernetes

Expand Down
2 changes: 1 addition & 1 deletion charts/studio/templates/deployment-studio-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
{{- end }}
serviceAccountName: {{ include "studio.serviceAccountName" . }}
securityContext:
{{- with .Values.studioWorker.podSecurityContext }}
{{- with .Values.studioUi.podSecurityContext }}
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
Expand Down

0 comments on commit e903ab6

Please sign in to comment.