-
Notifications
You must be signed in to change notification settings - Fork 17
/
kustomization.yaml
36 lines (30 loc) · 1.19 KB
/
kustomization.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright Contributors to the Open Cluster Management project
# Adds namespace to all resources.
# namespace: open-cluster-management
namespace: multicluster-engine
# Value of this field is prepended to the
# names of all resources, e.g. a deployment named
# "wordpress" becomes "alices-wordpress".
# Note that it should also match with the prefix (text before '-') of the namespace
# field above.
#namePrefix: multicloud-
# Labels to add to all resources and selectors.
#commonLabels:
# someName: someValue
# Each entry in this list must resolve to an existing
# resource definition in YAML. These are the resource
# files that kustomize reads, modifies and emits as a
# YAML string, with resources separated by document
# markers ("---").
#
# General rule here is anything deployed by OLM bundles should go here as well,
# this is used in "make deploy" for developers and should mimic what OLM deploys
# for you. CRDs are an exception to this as we don't want to have to list them all
# here. These are deployed via a "make install" dependency.
resources:
- ./service_account.yaml
- ./clusterrole_binding.yaml
- ./clusterrole_binding_prom.yaml
- ./clusterrole.yaml
- ./service.yaml
- ./deployment.yaml