-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from WangZzzhe/dev/orm-model-values
add orm values
- Loading branch information
Showing
9 changed files
with
73 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+11 Bytes
(100%)
charts/katalyst/charts/colocation/charts/katalyst-agent-0.5.0.tgz
Binary file not shown.
Binary file modified
BIN
+26 Bytes
(100%)
charts/katalyst/charts/colocation/charts/katalyst-controller-0.5.0.tgz
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
charts/katalyst/charts/colocation/charts/katalyst-metric-0.5.0.tgz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
charts/katalyst/charts/colocation/charts/katalyst-scheduler-0.5.0.tgz
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
charts/katalyst/charts/colocation/charts/katalyst-webhook-0.5.0.tgz
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
global: | ||
# Overrides all components' image by global image | ||
image: {} | ||
|
||
# Overrides katalyst-agent values | ||
katalyst-agent: | ||
enabled: true | ||
|
||
image: | ||
registry: cr-pro-cn-guilin-boe.cr.volces.com | ||
repository: wz-test/katalyst-agent | ||
pullPolicy: IfNotPresent | ||
# Overrides the image tag whose default is the chart appVersion. | ||
tag: "v0.5.0" | ||
|
||
imagePullSecrets: [ ] | ||
nameOverride: "" | ||
fullnameOverride: "" | ||
|
||
serviceAccount: | ||
# Specifies whether a service account should be created | ||
create: true | ||
# Annotations to add to the service account | ||
annotations: { } | ||
name: katalyst-agent | ||
|
||
podAnnotations: | ||
"katalyst.kubewharf.io/qos_level": system_cores | ||
|
||
resources: { } | ||
|
||
nodeSelector: { } | ||
|
||
tolerations: | ||
- effect: NoSchedule | ||
operator: Exists | ||
|
||
affinity: { } | ||
|
||
customCommand: { } | ||
|
||
customArgs: | ||
agents: "*" | ||
eviction-plugins: "*" | ||
enable-reclaim: true | ||
cpu-resource-plugin-advisor: true | ||
enable-cpu-pressure-eviction: true | ||
memory-resource-plugin-advisor: true | ||
enable-report-topology-policy: true | ||
qrm-socket-dirs: "/var/lib/katalyst/plugin-socks" # qrm plugins registry to orm | ||
pod-resources-server-endpoint: "/var/lib/katalyst/pod-resources/kubelet.sock" # kubelet reporter get pod resources from orm | ||
orm-kubelet-pod-resources-endpoints: "/var/lib/kubelet/pod-resources/kubelet.sock" | ||
orm-devices-provider: "kubelet" # orm get devices resources from kubelet | ||
topology-policy-name: "none" # none / best-effort / restricted / single-numa-node / numeric supported | ||
orm-resource-names-map: "resource.katalyst.kubewharf.io/reclaimed_millicpu=cpu,resource.katalyst.kubewharf.io/reclaimed_memory=memory" | ||
enable-kubelet-secure-port: true | ||
|
||
hostMountPaths: | ||
kubeletLibDir: /var/lib/kubelet | ||
runtimeSocketDir: /run/containerd | ||
katalystLibDir: /var/lib/katalyst | ||
|
||
katalyst-controller: {} | ||
|
||
katalyst-webhook: {} | ||
|
||
katalyst-scheduler: {} | ||
|
||
katalyst-metric: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters