Skip to main content

release create

Create a new release using a collection of application manifest files.

Usage

replicated release create --yaml-dir YAML_DIR [flags]
  • YAML_DIR corresponds to the root directory of the YAML application manifest files.
  • Additional flags returned by --help that are not supported in Replicated have been omitted from the list below
FlagType (if applicable)Description
--yaml-dirpathThe directory containing multiple YAML manifest files for a release. (Required)
--promotestringChannel name to promote this release to. Case sensitive.
--ensure-channelWhen used with --promote channel, creates the channel if it does not exist.
--lintLint a manifest directory prior to creation of the release. For more information, see Linter Rules.
--release-notesstringWhen used with --promote channel, creates the release notes in markdown.
--versionstringWhen used with --promote channel, sets the version label for the release in this channel.
-h, --helpHelp for the command.

Examples

--yaml-dir

replicated release create --yaml-dir ./manifests

• Reading manifests from ./manifests ✓
• Creating Release ✓
• SEQUENCE: 58

--promote

replicated release create --yaml-dir manifests --promote Unstable

• Reading manifests from manifests ✓
• Creating Release ✓
• SEQUENCE: 59
• Promoting ✓
• Channel Unstable successfully set to release 59

--ensure-channel

replicated release create --yaml-dir ./manifests --promote my-new-channel --ensure-channel

• Reading manifests from manifests ✓
• Creating Release ✓
• SEQUENCE: 60
• Promoting ✓
• Channel my-new-channel successfully set to release 60

--release-notes

replicated release create --yaml-dir ./manifests --promote Unstable --ensure-channel --release-notes "CI Release"

• Reading manifests from manifests ✓
• Creating Release ✓
• SEQUENCE: 61
• Promoting ✓
• Channel Unstable successfully set to release 61

--version

replicated release create --yaml-dir ./manifests --promote Unstable --ensure-channel --release-notes "Beta Release" --version "1.2.3"

• Reading manifests from manifests ✓
• Creating Release ✓
• SEQUENCE: 62
• Promoting ✓
• Channel Unstable successfully set to release 62