Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions docs/upgrading-openshift.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,26 @@ passwd:

There are no breaking changes between versions 4.12.0 and 4.13.0 of the `openshift` configuration specification. Any valid 4.12.0 configuration can be updated to a 4.13.0 configuration by changing the version string in the config.

The following is a list of notable new features, deprecations, and changes.

### User passwords

The `passwd.users` section enabled the `password_hash` field, which sets the password hash for an account. The `users` section continues to support only the `core` user.

<!-- butane-config -->
```yaml
variant: openshift
version: 4.13.0
metadata:
labels:
machineconfiguration.openshift.io/role: worker
name: core-password
passwd:
users:
- name: core
password_hash: $y$j9T$nQ...
```

## From Version 4.11.0 to 4.12.0

There are no breaking changes between versions 4.11.0 and 4.12.0 of the `openshift` configuration specification. Any valid 4.11.0 configuration can be updated to a 4.12.0 configuration by changing the version string in the config.
Expand Down