github.com/redhat-appstudio/release-service@v0.0.0-20240507045911-a8558ef3422a/config/manifests/kustomization.yaml (about)

     1  # These resources constitute the fully configured set of manifests
     2  # used to generate the 'manifests/' directory in a bundle.
     3  resources:
     4  - bases/release-service.clusterserviceversion.yaml
     5  - ../default
     6  - ../samples
     7  - ../scorecard
     8  
     9  # [WEBHOOK] To enable webhooks, uncomment all the sections with [WEBHOOK] prefix.
    10  # Do NOT uncomment sections with prefix [CERTMANAGER], as OLM does not support cert-manager.
    11  # These patches remove the unnecessary "cert" volume and its manager container volumeMount.
    12  #patchesJson6902:
    13  #- target:
    14  #    group: apps
    15  #    version: v1
    16  #    kind: Deployment
    17  #    name: controller-manager
    18  #    namespace: system
    19  #  patch: |-
    20  #    # Remove the manager container's "cert" volumeMount, since OLM will create and mount a set of certs.
    21  #    # Update the indices in this path if adding or removing containers/volumeMounts in the manager's Deployment.
    22  #    - op: remove
    23  #      path: /spec/template/spec/containers/1/volumeMounts/0
    24  #    # Remove the "cert" volume, since OLM will create and mount a set of certs.
    25  #    # Update the indices in this path if adding or removing volumes in the manager's Deployment.
    26  #    - op: remove
    27  #      path: /spec/template/spec/volumes/0