Oc export: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
Line 18: Line 18:
oc export all --as-template=<template_name>
oc export all --as-template=<template_name>
</pre>
</pre>
<font color=red>Incomplete</font>

Latest revision as of 00:17, 31 July 2017

Internal

Overview

Export objects into configuration files that can be used for backups or to create similar objects elsewhere in the cluster. The default format is YAML. Fields that cannot be specified on create, or which will be signed upon creation, will be emptied. The status part of objects is also cleared.

Options:

  • The --exact flag configure export not to clear fields.
  • The --raw flag ?
  • The --as-template flag generates an API structure for a template to which parameters and object labels can be added.
  • "-o json" exports to JSON


oc export all --as-template=<template_name>

Incomplete