Configuration#
K0smotron managed control planes are managed using custom resource objects.
apiVersion: k0smotron.io/v1beta1
kind: Cluster
metadata:
name: k0smotron-test
spec:
replicas: 1
image: k0sproject/k0s
version: v1.27.1-k0s.0
service:
type: NodePort
apiPort: 30443
konnectivityPort: 30132
persistence:
type: emptyDir
For full reference of the fields check out the reference docs.
K0s configuration#
K0smotron allows you to configure k0s via spec.k0sConfig
field. If empty, the default configuration will be used.
Refer to k0s docs for a reference on k0s configuration.
Note: Some fields will be overwritten by k0smotron. K0smotron will set the following fields:
spec.k0sConfig.spec.api.externalAddress
will be set to the value ofspec.externalAddress
ifspec.externalAddress
is set. If not, k0smotron will use load balancer IP or try to detectexternalAddress
out of nodes IP addresses.spec.k0sConfig.spec.api.port
will be set to the value ofspec.service.apiPort
.spec.k0sConfig.spec.konnectivity.port
will be set to the value ofspec.service.konnectivityPort
.spec.k0sConfig.spec.storage.kine.dataSource
will be set to the value ofspec.kineDataSourceURL
ifspec.kineDataSourceURL
is set.spec.k0sConfig.spec.storage.type
will be set tokine
.