-
Notifications
You must be signed in to change notification settings - Fork 28
crds: add kustomization.yaml
#13
crds: add kustomization.yaml
#13
Conversation
This `kustomization` simply lists all CRD manifests. As such it can be referred to from other layers to import/include all CRDs in another rendering.
Welcome @NicolasT! |
Hi @NicolasT. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
This was taken from the `kustomization.yaml` found in the `container-object-storage-interface-controller` repository which in turn deploys these CRDs. See: https://github.com/kubernetes-sigs/container-object-storage-interface-controller/blob/f6867a078f0b6254aadd61987e103174bfa6b870/deploy/base/kustomization.yaml#L18
b3eca05
to
584f54a
Compare
/ok-to-test |
Tested. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: NicolasT, wlan0 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/lgtm |
Instead of listing all CRD manifests and patching in the required `api-approved` label in a Kustomization within this repository, use the new Kustomization layer from the API repository as a base. This simplifies the deployment machinery in this project. See: kubernetes-retired/container-object-storage-interface-api#13
Instead of listing all CRD manifests and patching in the required `api-approved` label in a Kustomization within this repository, use the new Kustomization layer from the API repository as a base. This simplifies the deployment machinery in this project. See: kubernetes-retired#13
Added fake client
This
kustomization
simply lists all CRD manifests. As such it can be referred to from other layers to import/include all CRDs in another rendering.If this gets merged, we can refer to it as a base in
container-object-storage-interface-controller
s deploy/base/kustomization.yaml instead of explicitly listing all CRD files (and keeping them in sync) asresources
.