Skip to content

Commit

Permalink
update UPGRADE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pweil- committed Nov 4, 2015
1 parent d6c76dd commit 9eacf49
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,35 @@ At that time, the openshift docker registry image must be upgraded in order to c

1. The `volume.metadata` field is deprecated as of Origin 1.0.6 in favor of `volume.downwardAPI`.

1. New fields (`fsGroup`, `supplementalGroups`, `allowHostPID` and `allowHostIPC`) have been added
to the default SCCs in Origin 1.0.7. These allow you to control groups for persistent volumes,
supplemental groups for the container, and usage of the host PID/IPC namespaces. The fields will
default as follows for existing SCCs:
1. New SCCs and additional fields on SCCs have been added in Origin 1.0.8. To pick up the new SCCs
you may [reset your default SCCs](https://docs.openshift.org/latest/admin_guide/manage_scc.html#updating-the-default-security-context-constraints).

New Fields:

1. allowHostPID - defaults to false. You may wish to change this to true on any privileged SCCs or
[reset your default SCCs](https://docs.openshift.org/latest/admin_guide/manage_scc.html#updating-the-default-security-context-constraints)
which will set this field to true for the privileged SCC and false for the restricted SCC.
1. allowHostIPC - defaults to false. You may wish to change this to true on any privileged SCCs or
[reset your default SCCs](https://docs.openshift.org/latest/admin_guide/manage_scc.html#updating-the-default-security-context-constraints)
which will set this field to true for the privileged SCC and false for the restricted SCC.
1. allowHostNetwork - defaults to false. You may wish to change this to true on any privileged SCCs or
[reset your default SCCs](https://docs.openshift.org/latest/admin_guide/manage_scc.html#updating-the-default-security-context-constraints)
which will set this field to true for the privileged SCC and false for the restricted SCC.
1. allowHostPorts - defaults to false. You may wish to change this to true on any privileged SCCs or
[reset your default SCCs](https://docs.openshift.org/latest/admin_guide/manage_scc.html#updating-the-default-security-context-constraints)
which will set this field to true for the privileged SCC and false for the restricted SCC.
1. fsGroup - if the strategy type is unset this field will default based on the runAsUser strategy.
If runAsUser is set to RunAsAny this field will also be set to RunAsAny. If the strategy type is
any other value this field will default to MustRunAs and look to the namespace for [annotation
configuration](https://docs.openshift.org/latest/architecture/additional_concepts/authorization.html#understanding-pre-allocated-values-and-security-context-constraints).
1. supplementalGroups - if the strategy type is unset this field will default based on the runAsUser strategy.
If runAsUser is set to RunAsAny this field will also be set to RunAsAny. If the strategy type is
any other value this field will default to MustRunAs and look to the namespace for [annotation
configuration](https://docs.openshift.org/latest/architecture/additional_concepts/authorization.html#understanding-pre-allocated-values-and-security-context-constraints).
configuration](https://docs.openshift.org/latest/architecture/additional_concepts/authorization.html#understanding-pre-allocated-values-and-security-context-constraints).
1. priority - defaults to nil for existing SCCs. Please refer to the
[SCC Documentation](https://docs.openshift.org/latest/architecture/additional_concepts/authorization.html#security-context-constraints)
for more information on how this affects admission.



1. The `v1beta3` API version is being removed in Origin 1.1 (OSE 3.1).
Expand Down

0 comments on commit 9eacf49

Please sign in to comment.