Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
dbdc434
:running: fix various typos
mcristina422 Jul 2, 2019
e0c78ca
Remove unused disableWebhookConfigInstaller flag
bradhoekstra Jul 8, 2019
2712876
Merge pull request #515 from bradhoekstra/remove-dwci
k8s-ci-robot Jul 8, 2019
4e3e16b
Merge pull request #513 from mcristina422/typos
k8s-ci-robot Jul 8, 2019
010e3c5
Only log CRD name during installation
ekuefler Jul 11, 2019
19ac705
Note on Manager#GetClient about delegating clients
DirectXMan12 Jul 17, 2019
8f633b1
Merge pull request #522 from DirectXMan12/docs/extra-manager-client-docs
k8s-ci-robot Jul 17, 2019
ad9b00b
:warning: support delete validation in validator interface
awesomenix Jul 18, 2019
3fe51b2
examples readme: documentation explaining the two provided examples
hasheddan Jul 22, 2019
8030432
examples readme: reference kubebuilder book for installation and deploy
hasheddan Jul 22, 2019
ad914c1
:sparkles: decoder now errors out when encountering an empty runtime.…
Jul 22, 2019
86ffaff
Merge pull request #529 from mengqiy/decodercheck
k8s-ci-robot Jul 23, 2019
d4d6a51
:bug: stop using hardcoded temp dir
Jul 22, 2019
72ab3fe
Merge pull request #525 from awesomenix/supportdelete
k8s-ci-robot Jul 23, 2019
fe1709a
fix(hack): Properly check if binary exists
mcristina422 Jul 23, 2019
42f8083
moving to type isnt completely necessary
mcristina422 Jul 23, 2019
68d92bb
Switch to interface-based options
DirectXMan12 Jul 24, 2019
320b6b6
Add field manager & dryrun to other opts
DirectXMan12 Jul 24, 2019
f770dcb
Merge pull request #530 from mengqiy/tmpdir
k8s-ci-robot Jul 24, 2019
7b3c83b
fix grammer of error in SetControllerReference
yashbhutwala Jul 25, 2019
5181210
Merge pull request #536 from DirectXMan12/feature/functional-options-…
k8s-ci-robot Jul 25, 2019
e2c7389
Merge pull request #539 from yashbhutwala/fix-SetControllerReference-…
k8s-ci-robot Jul 25, 2019
c49d570
Merge pull request #519 from ekuefler/patch-1
k8s-ci-robot Jul 25, 2019
59b131b
Merge pull request #527 from hasheddan/examples-readme
k8s-ci-robot Jul 25, 2019
8102998
:bug: surface controller options when using builder
awesomenix Jul 17, 2019
3b06668
✨ Implement delete collection via delete options
adracus May 26, 2019
cea57be
:bug: Preserve GroupVersionKind during Update/Patch
vincepri Jul 22, 2019
bfba246
Merge pull request #447 from adracus/feature.delete-collection
k8s-ci-robot Jul 26, 2019
ee41a80
Merge pull request #528 from vincepri/fixup-gvk
k8s-ci-robot Jul 27, 2019
37c8aa1
Return controller from builder.Build
ncdc Jul 26, 2019
402d93e
Use request Context for admission Webhook handlers
Aug 3, 2019
dc83571
Merge pull request #542 from ncdc/dynamic-watchers
k8s-ci-robot Aug 5, 2019
335a587
Merge pull request #520 from awesomenix/master
k8s-ci-robot Aug 5, 2019
e0bee34
Merge pull request #549 from seh/supply-http-request-context-to-admis…
k8s-ci-robot Aug 6, 2019
054ee41
Merge pull request #533 from mcristina422/checkInstall
k8s-ci-robot Aug 6, 2019
11818d8
:bug: fix SimpleController in builder test
Aug 6, 2019
084b73e
Merge pull request #552 from mengqiy/fixsimplecontroller
k8s-ci-robot Aug 6, 2019
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
Prev Previous commit
Next Next commit
Remove unused disableWebhookConfigInstaller flag
Signed-off-by: Brad Hoekstra <[email protected]>
  • Loading branch information
bradhoekstra committed Jul 8, 2019
commit e0c78ca87dab7fec0c47c279581ae301acb47e00
6 changes: 0 additions & 6 deletions examples/builtins/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ limitations under the License.
package main

import (
"flag"
"os"

appsv1 "k8s.io/api/apps/v1"
Expand All @@ -37,11 +36,6 @@ import (
var log = logf.Log.WithName("example-controller")

func main() {
var disableWebhookConfigInstaller bool
flag.BoolVar(&disableWebhookConfigInstaller, "disable-webhook-config-installer", false,
"disable the installer in the webhook server, so it won't install webhook configuration resources during bootstrapping")

flag.Parse()
logf.SetLogger(zap.Logger(false))
entryLog := log.WithName("entrypoint")

Expand Down