mirror of
https://git.sr.ht/~goorzhel/turboprop
synced 2024-12-14 11:37:37 +00:00
Fix typos in intel-gpu-exporter
This commit is contained in:
parent
64a723834b
commit
1bfa6e2f2d
1 changed files with 13 additions and 11 deletions
|
@ -8,19 +8,21 @@
|
|||
mainImage = "ghcr.io/onedr0p/intel-gpu-exporter:rolling@sha256:0061466abe02f8a7befb1f8ab34cdab07034d903e491f9471f2416cabe621c1e";
|
||||
extraValues = {
|
||||
global.fullnameOverride = "intel-gpu-exporter";
|
||||
controller.main = {
|
||||
controllers.main = {
|
||||
type = "daemonset";
|
||||
containers.main.resources = {
|
||||
limits = {
|
||||
"gpu.intel.com/i915" = 1;
|
||||
memory = "500Mi";
|
||||
};
|
||||
resources = {
|
||||
"gpu.intel.com/i915" = 1;
|
||||
memory = "100Mi";
|
||||
cpu = "100m";
|
||||
};
|
||||
containers.main = {
|
||||
securityContext.privileged = true;
|
||||
resources = {
|
||||
limits = {
|
||||
"gpu.intel.com/i915" = 1;
|
||||
memory = "500Mi";
|
||||
};
|
||||
requests = {
|
||||
"gpu.intel.com/i915" = 1;
|
||||
memory = "100Mi";
|
||||
cpu = "100m";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
defaultPodOptions.nodeSelector."intel.feature.node.kubernetes.io/gpu" = "true";
|
||||
|
|
Loading…
Reference in a new issue