Skip to content

Admission control plugins compiled in with master#1034

Closed
derekwaynecarr wants to merge 11 commits intoopenshift:masterfrom
derekwaynecarr:admission_control_plugins
Closed

Admission control plugins compiled in with master#1034
derekwaynecarr wants to merge 11 commits intoopenshift:masterfrom
derekwaynecarr:admission_control_plugins

Conversation

@derekwaynecarr
Copy link
Member

Added the set of admission control plug-ins as compiled in with master.

This is the set I will need to enable quota and project backed by namespace scenarios.

The kubernetes version bump is the same as past rebase, just needed to pull in the new pkgs.

Pulled all the upstream cherry picks.

@smarterclayton @deads2k - please review and let me know if I did anything wrong.

I will submit the follow-on PR after this to enable admission control to work from the plug-ins.

@smarterclayton
Copy link
Contributor

You really didn't want to do that - my bad. You want to run Kube rebase, then only commit the added things in the changeset (do surgery on what it generates).

On Feb 16, 2015, at 12:51 PM, Derek Carr notifications@github.com wrote:

Added the set of admission control plug-ins as compiled in with master.

This is the set I will need to enable quota and project backed by namespace scenarios.

The kubernetes version bump is the same as past rebase, just needed to pull in the new pkgs.

Pulled all the upstream cherry picks.

@smarterclayton @deads2k - please review and let me know if I did anything wrong.

I will submit the follow-on PR after this to enable admission control to work from the plug-ins.

You can view, comment on, or merge this pull request online at:

#1034

Commit Summary

Add required admission control plugins
bump(github.com/GoogleCloudPlatform/kubernetes):c977a458642b4dbd8c3ad9cfc9eecafc85fb6183
UPSTREAM: need to make sure --help flags is registered before calling pflag
UPSTREAM: special command "help" must be aware of context
UPSTREAM: Add 'release' field to raven-go
UPSTREAM: Disable UIs for Kubernetes and etcd
UPSTREAM: Disable auto-pull when tag is "latest"
UPSTREAM: Allow SetList to work against api.List
UPSTREAM: Allow kubelet to run without Docker
UPSTREAM: Fix cross-namespace queries
UPSTREAM: Distinguish between NamespaceAll and NamespaceDefault
File Changes

M Godeps/Godeps.json (25)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/pkg/resourcequota/doc.go (18)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/pkg/resourcequota/resource_quota_controller.go (194)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/limitranger/admission.go (175)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/limitranger/admission_test.go (221)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/limitranger/interfaces.go (25)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/namespace/exists/admission.go (98)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/namespace/exists/admission_test.go (17)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/resourcedefaults/admission.go (73)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/resourcedefaults/admission_test.go (98)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/resourcedefaults/doc.go (24)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/resourcequota/admission.go (177)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/resourcequota/admission_test.go (377)
A Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/admission/resourcequota/doc.go (19)
M Godeps/_workspace/src/golang.org/x/net/context/context.go (2)
M Godeps/_workspace/src/golang.org/x/net/html/atom/atom.go (2)
M Godeps/_workspace/src/golang.org/x/net/html/charset/charset.go (2)
M Godeps/_workspace/src/golang.org/x/net/html/doc.go (2)
M Godeps/_workspace/src/golang.org/x/net/websocket/websocket.go (2)
M Godeps/_workspace/src/golang.org/x/oauth2/github/github.go (2)
M Godeps/_workspace/src/golang.org/x/oauth2/google/google.go (2)
M Godeps/_workspace/src/golang.org/x/oauth2/jws/jws.go (2)
M Godeps/_workspace/src/golang.org/x/oauth2/oauth2.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/appengine.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/channel/channel.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/datastore/doc.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/delay/delay.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/image/image.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/log/log.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/mail/mail.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/memcache/memcache.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/module/module.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/remote_api/remote_api.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/search/search.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/taskqueue/taskqueue.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/urlfetch/urlfetch.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/user/user.go (2)
M Godeps/_workspace/src/google.golang.org/appengine/xmpp/xmpp.go (2)
M pkg/cmd/server/origin/master.go (7)
Patch Links:

https://github.com/openshift/origin/pull/1034.patch
https://github.com/openshift/origin/pull/1034.diff

Reply to this email directly or view it on GitHub.

@derekwaynecarr
Copy link
Member Author

I can do surgery. Do I need a special commit message format to represent surgical deps?

@smarterclayton
Copy link
Contributor

No special format, if it's just a few use a bump string that tries to represent what you changed (like .../plugins/admission/*)

On Feb 16, 2015, at 12:58 PM, Derek Carr notifications@github.com wrote:

I can do surgery. Do I need a special commit message format to represent surgical deps?


Reply to this email directly or view it on GitHub.

jpeeler pushed a commit to jpeeler/origin that referenced this pull request Aug 10, 2017
…service-catalog/' changes from 568a7b9..8f07b7b

8f07b7b origin: add required patches
ee57bfb Cleanup of ups broker example + making controller follow the OSB API (openshift#807)
45a11ed Revert "Rename our resources to have ServiceCatalog prefix (openshift#1054)" (openshift#1061)
4e47ec1 Rename our resources to have ServiceCatalog prefix (openshift#1054)
2bb334a Rebase on 1.7 API machinery (openshift#944)
5780b59 Run broker reconciler when spec is changed. (openshift#1026)
9c22d04 Merge branch 'pr/1006'
d077915 check number of expected events before dereferencing to avoid panic (openshift#1052)
90d615f Merge branch 'pr/1055'
bb6d6d8 fix log output to use formatted output (openshift#1056)
c7abc81 Adding examples to the README
ccc93c9 Remove different-org rule for LGTM (openshift#1050)
be04cd5 Allow for a period in the GUID of the External ID (openshift#1034)
8c246df Make it so that binding.spec.secretName defaults to binding name (openshift#851)
6745418 Bump OSB Client (openshift#1049)
8346a0d apiserver etcd healthcheck as suggested to address k/k#48215 (openshift#1039)
11d0d4a use GKE's latest 1.6.X cluster version for Jenkins (openshift#1036)
7d71b5b Cross-build all the things!
8ec0874 RBAC setup behind the aggregator. (openshift#936)
0864a2e Upsert retry loop for Secret, set/check ownerReference for Secret owned by Binding (openshift#979)
6be9886 add info about weekly calls (openshift#1027)
a242b26 add OSB API Header version flag (openshift#1014)
66e2ce6 Update REVIEWING doc with changes to LGTM process (openshift#1016)
699e016 Writing the returned progress description from the broker (openshift#998)
02642f4 Adding target to test on the host (openshift#1020)
78ca572 v0.0.13 (openshift#1024)
9e79ec2 use GKE's default K8S version for Jenkins (openshift#1023)
d3c915a Fix curl on API server start error (openshift#1015)
b50be75 Merge branch 'pr/1013'
2c98ba1 Using tag URLs
687f091 Parameterizing the priority fields
34ed5cd update apiregistration yaml to v1.7 final (openshift#1011)
91fa1ad make e2e look for pods' existence before checking status (openshift#1012)
0f90705 explicitly disable leader election if it is not enabled (openshift#965)
f5761e7 controller-manager health checks (openshift#694)
da260f2 Add logging for normal Unbind errors (openshift#992)
4c916a5 make the apiserver test use tls (openshift#991)
1a62ecc refactor reconcileBroker (openshift#986)
cc179bc Add logging for normal Bind errors (openshift#993)
a1458dd add parameterization for user-broker image to e2e tests (openshift#995)
fb15891 Bump OSB client (openshift#1000)
79d5206 v0.0.12 (openshift#996)
39c7407 Merge branch 'pr/975'
a553b2d Merge branch 'pr/974'
d573339 reconcileBinding error checking (openshift#973)
39a1061 Making events and actions checks generic (openshift#960)
73136a4 Bump osb client (openshift#971)
878a987 reconcileInstance error checking in unit-tests
4991d57  reconcileBroker error checking in unit-tests
9ed6812 Extract methods for binding test setup (openshift#961)
b69a1ee Make ups-broker return valid unbind response (openshift#964)
8b37d2f Releasing 0.0.11 (openshift#962)
52fec8b Merge branch 'pr/954'
d49cdeb Swap client
445fa71 Add dependency on pmorie/go-open-service-broker-client
9f743b2 Instructions for enabling API Aggregation (openshift#895)
512508d Use correct infof calls in controller_manager (openshift#950)
77943ba fix regex that determines if a tag is deployable (openshift#947)
8a226b8 Updates for v0.0.10 release (openshift#943)
REVERT: 568a7b9 origin build: add origin tooling

git-subtree-dir: cmd/service-catalog/go/src/github.com/kubernetes-incubator/service-catalog
git-subtree-split: 8f07b7bbf3acb2b557f23596a92b5e775ae9321c
jpeeler pushed a commit to jpeeler/origin that referenced this pull request Feb 1, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants