mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-21 08:33:49 +00:00
28 lines
677 B
YAML
28 lines
677 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- crds/0000_01_operator.open-cluster-management.io_clustermanagers.crd.yaml
|
|
- rbac/cluster_role.yaml
|
|
- rbac/cluster_role_binding.yaml
|
|
- operator/namespace.yaml
|
|
- operator/service_account.yaml
|
|
- operator/operator.yaml
|
|
|
|
replicas:
|
|
- name: cluster-manager
|
|
count: 1
|
|
|
|
images:
|
|
- name: quay.io/open-cluster-management/registration-operator:latest
|
|
newName: quay.io/open-cluster-management/registration-operator
|
|
newTag: latest
|
|
|
|
patches:
|
|
- target:
|
|
kind: Deployment
|
|
patch: |-
|
|
- op: replace
|
|
path: "/spec/template/spec/containers/0/imagePullPolicy"
|
|
value: IfNotPresent
|