-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17497 from juanvallejo/jvallejo/calc-patches-usin…
…g-input-version Automatic merge from submit-queue. calculate patches using input version Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1518325 Wrap an encoder to first convert to the same version used to read the object (based on the mapping's GroupVersion) cc @openshift/cli-review @liggitt
- Loading branch information
Showing
3 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
apiVersion: extensions/v1beta1 | ||
kind: DaemonSet | ||
metadata: | ||
name: bind | ||
spec: | ||
updateStrategy: | ||
type: RollingUpdate | ||
rollingUpdate: | ||
maxUnavailable: 10% | ||
template: | ||
metadata: | ||
labels: | ||
service: bind | ||
spec: | ||
affinity: | ||
podAntiAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
- labelSelector: | ||
matchExpressions: | ||
- key: "service" | ||
operator: "In" | ||
values: ["bind"] | ||
topologyKey: "kubernetes.io/hostname" | ||
namespaces: [] | ||
containers: | ||
- name: kubernetes-pause | ||
image: gcr.io/google-containers/pause:2.0 |