Last active
November 8, 2023 05:03
-
-
Save leandrosiow/ad880dbb6a2e4a95ef51960b40c4d9f9 to your computer and use it in GitHub Desktop.
These are examples of kubelet-config.json files
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
{ | |
"kind": "KubeletConfiguration", | |
"apiVersion": "kubelet.config.k8s.io/v1beta1", | |
"syncFrequency": "1m0s", | |
"fileCheckFrequency": "20s", | |
"httpCheckFrequency": "20s", | |
"address": "0.0.0.0", | |
"port": 10250, | |
"tlsCertFile": "/root/cdk/server.crt", | |
"tlsPrivateKeyFile": "/root/cdk/server.key", | |
"authentication": { | |
"x509": { | |
"clientCAFile": "/root/cdk/ca.crt" | |
}, | |
"webhook": { | |
"enabled": true, | |
"cacheTTL": "2m0s" | |
}, | |
"anonymous": { | |
"enabled": false | |
} | |
}, | |
"authorization": { | |
"mode": "Webhook", | |
"webhook": { | |
"cacheAuthorizedTTL": "5m0s", | |
"cacheUnauthorizedTTL": "30s" | |
} | |
}, | |
"registryPullQPS": 5, | |
"registryBurst": 10, | |
"eventRecordQPS": 5, | |
"eventBurst": 10, | |
"enableDebuggingHandlers": true, | |
"healthzPort": 10248, | |
"healthzBindAddress": "127.0.0.1", | |
"oomScoreAdj": -999, | |
"clusterDomain": "cluster.local", | |
"clusterDNS": [ | |
"10.152.183.93" | |
], | |
"streamingConnectionIdleTimeout": "4h0m0s", | |
"nodeStatusUpdateFrequency": "10s", | |
"nodeLeaseDurationSeconds": 40, | |
"imageMinimumGCAge": "2m0s", | |
"imageGCHighThresholdPercent": 60, | |
"imageGCLowThresholdPercent": 39, | |
"volumeStatsAggPeriod": "1m0s", | |
"cgroupsPerQOS": true, | |
"cgroupDriver": "cgroupfs", | |
"cpuManagerPolicy": "none", | |
"cpuManagerReconcilePeriod": "10s", | |
"runtimeRequestTimeout": "2m0s", | |
"hairpinMode": "promiscuous-bridge", | |
"maxPods": 110, | |
"podPidsLimit": -1, | |
"resolvConf": "/run/systemd/resolve/resolv.conf", | |
"cpuCFSQuota": true, | |
"cpuCFSQuotaPeriod": "100ms", | |
"maxOpenFiles": 1000000, | |
"contentType": "application/vnd.kubernetes.protobuf", | |
"kubeAPIQPS": 5, | |
"kubeAPIBurst": 10, | |
"serializeImagePulls": true, | |
"evictionHard": { | |
"imagefs.available": "15%", | |
"memory.available": "100Mi", | |
"nodefs.available": "10%", | |
"nodefs.inodesFree": "5%" | |
}, | |
"evictionPressureTransitionPeriod": "5m0s", | |
"enableControllerAttachDetach": true, | |
"makeIPTablesUtilChains": true, | |
"iptablesMasqueradeBit": 14, | |
"iptablesDropBit": 15, | |
"failSwapOn": false, | |
"containerLogMaxSize": "10Mi", | |
"containerLogMaxFiles": 5, | |
"configMapAndSecretChangeDetectionStrategy": "Watch", | |
"enforceNodeAllocatable": [ | |
"pods" | |
] | |
} |
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
{ | |
"kind": "KubeletConfiguration", | |
"apiVersion": "kubelet.config.k8s.io/v1beta1", | |
"address": "0.0.0.0", | |
"authentication": { | |
"anonymous": { | |
"enabled": false | |
}, | |
"webhook": { | |
"cacheTTL": "2m0s", | |
"enabled": true | |
}, | |
"x509": { | |
"clientCAFile": "/etc/kubernetes/pki/ca.crt" | |
} | |
}, | |
"authorization": { | |
"mode": "Webhook", | |
"webhook": { | |
"cacheAuthorizedTTL": "5m0s", | |
"cacheUnauthorizedTTL": "30s" | |
} | |
}, | |
"clusterDomain": "cluster.local", | |
"hairpinMode": "hairpin-veth", | |
"cgroupDriver": "cgroupfs", | |
"cgroupRoot": "/", | |
"featureGates": { | |
"RotateKubeletServerCertificate": true | |
}, | |
"serializeImagePulls": false, | |
"serverTLSBootstrap": true, | |
"clusterDNS": [ | |
"10.100.0.10" | |
], | |
"evictionHard": { | |
"memory.available": "100Mi", | |
"nodefs.available": "10%", | |
"nodefs.inodesFree": "5%" | |
}, | |
"kubeReserved": { | |
"cpu": "80m", | |
"ephemeral-storage": "1Gi", | |
"memory": "2609Mi" | |
}, | |
"maxPods": 58, | |
"cpuCFSQuota": false | |
} |
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
{ | |
"kind": "KubeletConfiguration", | |
"apiVersion": "kubelet.config.k8s.io/v1beta1", | |
"address": "0.0.0.0", | |
"authentication": { | |
"anonymous": { | |
"enabled": false | |
}, | |
"webhook": { | |
"cacheTTL": "2m0s", | |
"enabled": true | |
}, | |
"x509": { | |
"clientCAFile": "/etc/kubernetes/pki/ca.crt" | |
} | |
}, | |
"authorization": { | |
"mode": "Webhook", | |
"webhook": { | |
"cacheAuthorizedTTL": "5m0s", | |
"cacheUnauthorizedTTL": "30s" | |
} | |
}, | |
"clusterDomain": "cluster.local", | |
"hairpinMode": "hairpin-veth", | |
"cgroupDriver": "cgroupfs", | |
"cgroupRoot": "/", | |
"featureGates": { | |
"RotateKubeletServerCertificate": true | |
}, | |
"serializeImagePulls": false, | |
"serverTLSBootstrap": true, | |
"clusterDNS": [ | |
"10.100.0.10" | |
], | |
"evictionHard": { | |
"memory.available": "100Mi", | |
"nodefs.available": "10%", | |
"nodefs.inodesFree": "5%" | |
}, | |
"kubeReserved": { | |
"cpu": "80m", | |
"ephemeral-storage": "1Gi", | |
"memory": "2609Mi" | |
}, | |
"maxPods": 58 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment