-
Notifications
You must be signed in to change notification settings - Fork 103
Bug 1844471: bump kubernetes to 1.19.0-rc.2 #132
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
Merged
openshift-merge-robot
merged 19 commits into
openshift:master
from
p0lyn0mial:rebase-19-from-mfojtik
Sep 7, 2020
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
79255af
security: add object meta to pod spec validation
mfojtik 2e2920a
IMPORTANT: NEED REVIEW: Audit options refactored upstream
mfojtik 944393e
api: adjust compatibility test to new pod validation
mfojtik 61fa0a3
update generated
mfojtik 3aba14e
BORING: build: fix gitlab push test conversion
mfojtik 41fd0e3
BORING: remove cruft in apps test
mfojtik 9f9f266
sweep usage of legacy conversion in code
mfojtik 7f6bb8b
BORING: update bootstrap_cluster_roles.yaml
mfojtik 5197be6
INTERESTING: TestPodSpecNodeSelectorUpdateDisallowed required more de…
mfojtik 7dc1d9a
Generate conversions for dockerpre012 and docker10
dmage e938f1b
Install conversions for dockerpre012 and docker10
dmage 846373e
BORING: apps: fix rolling deployment strategy params conversion
mfojtik f23a48d
Support legacy DockerImage versions
dmage b78bd3b
apps: fix nil scop in strategy conversions
mfojtik d857ce4
build: remove custom schema in strategyrestrictions
mfojtik c7dfd6b
build: add conversion from url values to build log options
p0lyn0mial e9678d3
bump(*): kubernetes-1.19.0-rc.2
p0lyn0mial f747ca3
imagestream: unpack the object if it's comming from the watch cache b…
p0lyn0mial c3310f0
review changes
p0lyn0mial File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -46,7 +46,7 @@ func Convert_apps_DeploymentTriggerImageChangeParams_To_v1_DeploymentTriggerImag | |
| return nil | ||
| } | ||
|
|
||
| func Convert_v1_RollingDeploymentStrategyParams_To_apps_RollingDeploymentStrategyParams(in *v1.RollingDeploymentStrategyParams, out *newer.RollingDeploymentStrategyParams, s conversion.Scope) error { | ||
| func Convert_v1_RollingDeploymentStrategyParams_To_apps_RollingDeploymentStrategyParams(in *v1.RollingDeploymentStrategyParams, out *newer.RollingDeploymentStrategyParams, _ conversion.Scope) error { | ||
| SetDefaults_RollingDeploymentStrategyParams(in) | ||
|
|
||
| out.UpdatePeriodSeconds = in.UpdatePeriodSeconds | ||
|
|
@@ -55,43 +55,44 @@ func Convert_v1_RollingDeploymentStrategyParams_To_apps_RollingDeploymentStrateg | |
|
|
||
| if in.Pre != nil { | ||
| out.Pre = &newer.LifecycleHook{} | ||
| if err := Convert_v1_LifecycleHook_To_apps_LifecycleHook(in.Pre, out.Pre, s); err != nil { | ||
| if err := Convert_v1_LifecycleHook_To_apps_LifecycleHook(in.Pre, out.Pre, nil); err != nil { | ||
| return err | ||
| } | ||
| } | ||
| if in.Post != nil { | ||
| out.Post = &newer.LifecycleHook{} | ||
| if err := Convert_v1_LifecycleHook_To_apps_LifecycleHook(in.Post, out.Post, s); err != nil { | ||
| if err := Convert_v1_LifecycleHook_To_apps_LifecycleHook(in.Post, out.Post, nil); err != nil { | ||
|
||
| return err | ||
| } | ||
| } | ||
| if in.MaxUnavailable != nil { | ||
| if err := s.Convert(in.MaxUnavailable, &out.MaxUnavailable, 0); err != nil { | ||
| if err := metav1.Convert_intstr_IntOrString_To_intstr_IntOrString(in.MaxUnavailable, &out.MaxUnavailable, nil); err != nil { | ||
| return err | ||
| } | ||
| } | ||
| if in.MaxSurge != nil { | ||
| if err := s.Convert(in.MaxSurge, &out.MaxSurge, 0); err != nil { | ||
| if err := metav1.Convert_intstr_IntOrString_To_intstr_IntOrString(in.MaxSurge, &out.MaxSurge, nil); err != nil { | ||
| return err | ||
| } | ||
| } | ||
|
|
||
| return nil | ||
| } | ||
|
|
||
| func Convert_apps_RollingDeploymentStrategyParams_To_v1_RollingDeploymentStrategyParams(in *newer.RollingDeploymentStrategyParams, out *v1.RollingDeploymentStrategyParams, s conversion.Scope) error { | ||
| func Convert_apps_RollingDeploymentStrategyParams_To_v1_RollingDeploymentStrategyParams(in *newer.RollingDeploymentStrategyParams, out *v1.RollingDeploymentStrategyParams, _ conversion.Scope) error { | ||
| out.UpdatePeriodSeconds = in.UpdatePeriodSeconds | ||
| out.IntervalSeconds = in.IntervalSeconds | ||
| out.TimeoutSeconds = in.TimeoutSeconds | ||
|
|
||
| if in.Pre != nil { | ||
| out.Pre = &v1.LifecycleHook{} | ||
| if err := Convert_apps_LifecycleHook_To_v1_LifecycleHook(in.Pre, out.Pre, s); err != nil { | ||
| if err := Convert_apps_LifecycleHook_To_v1_LifecycleHook(in.Pre, out.Pre, nil); err != nil { | ||
| return err | ||
| } | ||
| } | ||
| if in.Post != nil { | ||
| out.Post = &v1.LifecycleHook{} | ||
| if err := Convert_apps_LifecycleHook_To_v1_LifecycleHook(in.Post, out.Post, s); err != nil { | ||
| if err := Convert_apps_LifecycleHook_To_v1_LifecycleHook(in.Post, out.Post, nil); err != nil { | ||
| return err | ||
| } | ||
| } | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will revert.