Skip to content

Commit

Permalink
Update gpu-provisioner chart
Browse files Browse the repository at this point in the history
Signed-off-by: Heba Elayoty <[email protected]>
  • Loading branch information
helayoty committed Mar 17, 2024
1 parent 2c50dc9 commit e40b75a
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 62 deletions.
4 changes: 2 additions & 2 deletions charts/kaito/gpu-provisioner/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: gpu-provisioner
description: A Helm chart for gpu-provisioner
type: application
version: 0.1.0
appVersion: 0.1.0
version: 0.2.0
appVersion: 0.2.0
sources:
- https://github.com/Azure/gpu-provisioner
maintainers:
Expand Down
107 changes: 51 additions & 56 deletions charts/kaito/gpu-provisioner/README.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ rules:
verbs: ["create", "patch"]
- apiGroups: [""]
resources: ["nodes"]
verbs: ["patch", "delete"]
verbs: ["create", "patch", "delete"]
- apiGroups: [""]
resources: ["pods/eviction"]
verbs: ["create"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: config-logging
name: gpu-provisioner-config-logging
namespace: {{ .Values.namespace }}
labels:
{{- include "gpu-provisioner.labels" . | nindent 4 }}
Expand Down
2 changes: 2 additions & 0 deletions charts/kaito/gpu-provisioner/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ spec:
image: {{ include "gpu-provisioner.controller.image" . }}
imagePullPolicy: {{ .Values.imagePullPolicy }}
env:
- name: CONFIG_LOGGING_NAME
value: "gpu-provisioner-config-logging"
- name: SYSTEM_NAMESPACE
valueFrom:
fieldRef:
Expand Down
6 changes: 4 additions & 2 deletions charts/kaito/gpu-provisioner/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ extraVolumes: []
controller:
image:
# -- Repository path to the controller image.
repository: mcr.microsoft.com/aks/kaito/gpu-provisioner
repository: ghcr.io/azure/gpu-provisioner
# -- Tag of the controller image.
tag: 0.1.0
tag: 0.2.0
# -- SHA256 digest of the controller image.
digest: ""
# -- SecurityContext for the controller container.
Expand All @@ -122,6 +122,8 @@ controller:
value:
- name: LEADER_ELECT # disable leader election for better debugging experience
value: "false"
- name: E2E_TEST_MODE
value: "false"
envFrom: []
# -- Resources for the controller pod.
resources:
Expand Down

0 comments on commit e40b75a

Please sign in to comment.