File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : skypilot
3
3
description : A Helm chart for deploying SkyPilot API server on Kubernetes
4
4
type : application
5
- version : 0.0.1-pre-03
5
+ version : 0.0.1-pre-04
6
6
appVersion : " 0.0"
7
7
dependencies :
8
8
- name : ingress-nginx
Original file line number Diff line number Diff line change 22
22
securityContext :
23
23
{{- toYaml . | nindent 8 }}
24
24
{{- end }}
25
+ runtimeClassName : {{ .Values.runtimeClassName }}
25
26
containers :
26
27
- name : skypilot-api
27
28
image : {{ .Values.apiService.image }}
Original file line number Diff line number Diff line change @@ -128,8 +128,17 @@ gcpCredentials:
128
128
129
129
# Set securityContext for the api pod (defaults to empty but allows users to override)
130
130
securityContext :
131
- runAsNonRoot : true
131
+ capabilities :
132
+ drop :
133
+ - ALL
134
+ allowPrivilegeEscalation : false
132
135
133
136
# Set securityContext for the api container inside the api pod (defaults to empty but allows users to override)
134
137
podSecurityContext :
135
- runAsNonRoot : true
138
+ capabilities :
139
+ drop :
140
+ - ALL
141
+ allowPrivilegeEscalation : false
142
+
143
+ # Set the runtime class
144
+ runtimeClassName :
You can’t perform that action at this time.
0 commit comments