Skip to content

Commit

Permalink
Move kustomization.yaml in default and use bases (kubernetes-sigs#773)
Browse files Browse the repository at this point in the history
Signed-off-by: Vince Prignano <[email protected]>
  • Loading branch information
vincepri authored and k8s-ci-robot committed Feb 25, 2019
1 parent 7d71193 commit 6078048
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions config/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ genrule(
name = "cluster-api-yaml",
srcs = [
":kustomize-yaml",
":kustomization.yaml",
":default/kustomization.yaml",
],
outs = ["cluster_api.yaml"],
cmd = "$(location @io_k8s_sigs_kustomize//:kustomize) build $$(dirname $(location :kustomization.yaml)) > $@",
cmd = "$(location @io_k8s_sigs_kustomize//:kustomize) build $$(dirname $(location :default/kustomization.yaml)) > $@",
tools = ["@io_k8s_sigs_kustomize//:kustomize"],
visibility = ["//visibility:public"],
)
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ namespace: cluster-api-system
namePrefix: cluster-api-

bases:
- crds/
- rbac/
- manager/
- ../crds/
- ../rbac/
- ../manager/

patches:
- default/manager_image_patch.yaml
- manager_image_patch.yaml

0 comments on commit 6078048

Please sign in to comment.