mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
34 lines
685 B
Plaintext
34 lines
685 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * microshift_configuring/microshift-config-snippets.adoc
|
|
|
|
:_mod-docs-content-type: CONCEPT
|
|
[id="microshift-example-config-snippets-objects_{context}"]
|
|
= Example configuration snippets that are objects
|
|
|
|
Objects are merged together when you use a configuration snippet.
|
|
|
|
.Example `10-advertiseAddress.yaml` snippet
|
|
[source,yaml]
|
|
----
|
|
apiServer:
|
|
advertiseAddress: "microshift-example"
|
|
----
|
|
|
|
.Example `20-audit-log.yaml` snippet
|
|
[source,yaml]
|
|
----
|
|
apiServer:
|
|
auditLog:
|
|
maxFileAge: 12
|
|
----
|
|
|
|
.Example configuration result
|
|
[source,yaml]
|
|
----
|
|
apiServer:
|
|
advertiseAddress: "microshift-example"
|
|
auditLog:
|
|
maxFileAge: 12
|
|
----
|