Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rs rollingupdate #14462

Merged
merged 7 commits into from
Jun 6, 2019
Merged
Show file tree
Hide file tree
Changes from 5 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
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ curl -X DELETE 'localhost:8080/apis/extensions/v1beta1/namespaces/default/repli
Once the original is deleted, you can create a new ReplicaSet to replace it. As long
as the old and new `.spec.selector` are the same, then the new one will adopt the old Pods.
However, it will not make any effort to make existing Pods match a new, different pod template.
To update Pods to a new spec in a controlled way, use a [rolling update](#rolling-updates).
To update Pods to a new spec in a controlled way, use a [Deployment](/docs/concepts/workloads/controllers/deployment/#creating-a-deployment), as ReplicaSets do not support a rolling update directly.

### Isolating Pods from a ReplicaSet

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ If you use a Docker credentials store, you won't see that `auth` entry but a `cr

## Create a Secret based on existing Docker credentials {#registry-secret-existing-credentials}

{{< note >}}
sethmccombs marked this conversation as resolved.
Show resolved Hide resolved
If you are using Kubernetes on Mac, you will need to provide credentials [via the command line](/#Create a Secret by providing credentials on the command line)
{{< /note >}}

A Kubernetes cluster uses the Secret of `docker-registry` type to authenticate with
a container registry to pull a private image.

Expand Down