We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We've migrated some settings from the old MKE 3 TOML config to the new MKE 4 yaml config. The migrated settings are
EtcdStorageQuota KubeAPIServerProfilingEnabled KubeControllerManagerProfilingEnabled KubeSchedulerProfilingEnabled KubeSchedulerBindToAll CipherSuitesForAPIServer CipherSuitesForEtcdServer KubeAPIServerAuditing KubeAPIServerAuditLogMaxAge KubeAPIServerAuditLogMaxBackup KubeAPIServerAuditLogMaxSize K8sEventRateLimit KubeManagerTerminatedPodGCThreshold K8sAlwaysPullImagesACEnabled KubeAPIServerRequestTimeout UnauthenticatedHTTP2DOSMitigation
Their descriptions can be found in MKE 3 docs - https://docs.mirantis.com/mke/3.7/ops/administer-cluster/configure-an-mke-cluster/configuration-options.html
MKE 3 docs are missing some of these settings, so, please feel free to reach out to me if you need help writing descriptions.
In the MKE 4 config file, the migrated settings look like this
spec: apiServer: profilingEnabled: false tlsCipherSuites: [] audit: enabled: false logPath: /var/lib/k0s/audit.log maxAge: 30 maxBackup: 10 maxSize: 10 eventRateLimit: enabled: false limits: - limit: "" limitQPS: 0 limitBurst: 0 limitCacheSize: 0 requestTimeout: 1m0s alwaysPullImages: false unauthenticatedHTTP2DOSMitigation: false etcd: storageQuota: "" tlsCipherSuites: [] controllerManager: profilingEnabled: false terminatedPodGCThreshold: 12500 scheduler: profilingEnabled: false bindToAll: false
Here is 1-1 mapping
The text was updated successfully, but these errors were encountered:
KoryKessel-Mirantis
No branches or pull requests
We've migrated some settings from the old MKE 3 TOML config to the new MKE 4 yaml config. The migrated settings are
Their descriptions can be found in MKE 3 docs - https://docs.mirantis.com/mke/3.7/ops/administer-cluster/configure-an-mke-cluster/configuration-options.html
MKE 3 docs are missing some of these settings, so, please feel free to reach out to me if you need help writing descriptions.
In the MKE 4 config file, the migrated settings look like this
Here is 1-1 mapping
The text was updated successfully, but these errors were encountered: