mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
93 lines
2.2 KiB
Plaintext
93 lines
2.2 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * microshift_configuring/microshift-using-config-yaml.adoc
|
|
|
|
:_mod-docs-content-type: CONCEPT
|
|
[id="microshift-yaml-default_{context}"]
|
|
= Default settings
|
|
|
|
If you do not create a `config.yaml` file or use a configuration snippet YAML file, default values are used. The following example shows the default configuration settings.
|
|
|
|
* To see the default values, run the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ microshift show-config
|
|
----
|
|
+
|
|
.Default values example output in YAML form
|
|
[source,yaml]
|
|
----
|
|
apiServer:
|
|
advertiseAddress: 10.44.0.0/32 # <1>
|
|
auditLog:
|
|
maxFileAge: 0
|
|
maxFileSize: 200
|
|
maxFiles: 10
|
|
profile: Default
|
|
namedCertificates:
|
|
- certPath: ""
|
|
keyPath: ""
|
|
names:
|
|
- ""
|
|
subjectAltNames: []
|
|
debugging:
|
|
logLevel: "Normal"
|
|
dns:
|
|
baseDomain: microshift.example.com
|
|
etcd:
|
|
memoryLimitMB: 0
|
|
ingress:
|
|
defaultHTTPVersion: 1
|
|
forwardedHeaderPolicy: ""
|
|
httpCompression:
|
|
mimeTypes:
|
|
- ""
|
|
httpEmptyRequestsPolicy: Respond
|
|
listenAddress:
|
|
- ""
|
|
logEmptyRequests: Log
|
|
ports:
|
|
http: 80
|
|
https: 443
|
|
routeAdmissionPolicy:
|
|
namespaceOwnership: InterNamespaceAllowed
|
|
status: Managed
|
|
tuningOptions:
|
|
clientFinTimeout: ""
|
|
clientTimeout: ""
|
|
headerBufferBytes: 0
|
|
headerBufferMaxRewriteBytes: 0
|
|
healthCheckInterval: ""
|
|
maxConnections: 0
|
|
serverFinTimeout: ""
|
|
serverTimeout: ""
|
|
threadCount: 0
|
|
tlsInspectDelay: ""
|
|
tunnelTimeout: ""
|
|
kubelet:
|
|
manifests:
|
|
kustomizePaths:
|
|
- /usr/lib/microshift/manifests
|
|
- /usr/lib/microshift/manifests.d/*
|
|
- /etc/microshift/manifests
|
|
- /etc/microshift/manifests.d/*
|
|
network:
|
|
clusterNetwork:
|
|
- 10.42.0.0/16
|
|
serviceNetwork:
|
|
- 10.43.0.0/16
|
|
serviceNodePortRange: 30000-32767
|
|
node:
|
|
hostnameOverride: ""
|
|
nodeIP: "" # <2>
|
|
nodeIPv6: ""
|
|
storage:
|
|
driver: "" # <3>
|
|
optionalCsiComponents: # <4>
|
|
- ""
|
|
----
|
|
<1> Calculated based on the address of the service network.
|
|
<2> The IP address of the default route.
|
|
<3> Default null value deploys Logical Volume Managed Storage (LVMS).
|
|
<4> Default null value deploys `snapshot-controller` and `snapshot-webhook`. |