Created
September 16, 2018 19:45
-
-
Save simplytunde/5319224f92ade43b952a499f7547fbaf to your computer and use it in GitHub Desktop.
Sample Kubeadm config
This file contains hidden or 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
api: | |
advertiseAddress: 172.19.40.24 | |
bindPort: 4443 | |
controlPlaneEndpoint: "" | |
apiServerCertSANs: | |
- kubernetes.mycompany.com | |
apiServerExtraArgs: | |
authorization-mode: Node,RBAC | |
apiVersion: kubeadm.k8s.io/v1alpha2 | |
auditPolicy: | |
logDir: /var/log/kubernetes/audit | |
logMaxAge: 2 | |
path: "" | |
certificatesDir: /etc/kubernetes/pki | |
clusterName: kubernetes | |
bootstrapTokens: | |
- groups: | |
- system:bootstrappers:kubeadm:default-node-token | |
token: helloo.mynameistundeola | |
ttl: 1h0m0s | |
usages: | |
- signing | |
- authentication | |
etcd: | |
local: | |
dataDir: /var/lib/etcd | |
image: "" | |
imageRepository: k8s.gcr.io | |
kind: MasterConfiguration | |
kubeProxy: | |
config: | |
bindAddress: 0.0.0.0 | |
clientConnection: | |
acceptContentTypes: "" | |
burst: 10 | |
contentType: application/vnd.kubernetes.protobuf | |
kubeconfig: /var/lib/kube-proxy/kubeconfig.conf | |
qps: 5 | |
clusterCIDR: 10.4.0.0/16 | |
configSyncPeriod: 15m0s | |
conntrack: | |
max: null | |
maxPerCore: 32768 | |
min: 131072 | |
tcpCloseWaitTimeout: 1h0m0s | |
tcpEstablishedTimeout: 24h0m0s | |
enableProfiling: false | |
healthzBindAddress: 0.0.0.0:10256 | |
hostnameOverride: "" | |
iptables: | |
masqueradeAll: false | |
masqueradeBit: 14 | |
minSyncPeriod: 0s | |
syncPeriod: 30s | |
ipvs: | |
excludeCIDRs: null | |
minSyncPeriod: 0s | |
scheduler: "" | |
syncPeriod: 30s | |
metricsBindAddress: 127.0.0.1:10249 | |
mode: "" | |
nodePortAddresses: null | |
oomScoreAdj: -999 | |
portRange: "" | |
resourceContainer: /kube-proxy | |
udpIdleTimeout: 250ms | |
kubeletConfiguration: | |
baseConfig: | |
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 | |
cgroupDriver: cgroupfs | |
cgroupsPerQOS: true | |
clusterDNS: | |
- 10.96.0.10 | |
clusterDomain: cluster.local | |
containerLogMaxFiles: 5 | |
containerLogMaxSize: 10Mi | |
contentType: application/vnd.kubernetes.protobuf | |
cpuCFSQuota: true | |
cpuManagerPolicy: none | |
cpuManagerReconcilePeriod: 10s | |
enableControllerAttachDetach: true | |
enableDebuggingHandlers: true | |
enforceNodeAllocatable: | |
- pods | |
eventBurst: 10 | |
eventRecordQPS: 5 | |
evictionHard: | |
imagefs.available: 15% | |
memory.available: 100Mi | |
nodefs.available: 10% | |
nodefs.inodesFree: 5% | |
evictionPressureTransitionPeriod: 5m0s | |
failSwapOn: true | |
fileCheckFrequency: 20s | |
hairpinMode: promiscuous-bridge | |
healthzBindAddress: 127.0.0.1 | |
healthzPort: 10248 | |
httpCheckFrequency: 20s | |
imageGCHighThresholdPercent: 85 | |
imageGCLowThresholdPercent: 80 | |
imageMinimumGCAge: 2m0s | |
iptablesDropBit: 15 | |
iptablesMasqueradeBit: 14 | |
kubeAPIBurst: 10 | |
kubeAPIQPS: 5 | |
makeIPTablesUtilChains: true | |
maxOpenFiles: 1000000 | |
maxPods: 110 | |
nodeStatusUpdateFrequency: 10s | |
oomScoreAdj: -999 | |
podPidsLimit: -1 | |
port: 10250 | |
registryBurst: 10 | |
registryPullQPS: 5 | |
resolvConf: /etc/resolv.conf | |
rotateCertificates: true | |
runtimeRequestTimeout: 2m0s | |
serializeImagePulls: true | |
staticPodPath: /etc/kubernetes/manifests | |
streamingConnectionIdleTimeout: 4h0m0s | |
syncFrequency: 1m0s | |
volumeStatsAggPeriod: 1m0s | |
kubernetesVersion: v1.11.3 | |
networking: | |
dnsDomain: tunde.local | |
podSubnet: 10.4.0.0/16 | |
serviceSubnet: 10.5.0.0/16 | |
nodeRegistration: {} | |
unifiedControlPlaneImage: "" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment