From 734a334736be6a952eb4587af0a57804d6704693 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Mon, 25 Nov 2019 15:50:02 +0100 Subject: [PATCH] include crd def. in kustomization --- docs/quickstart.md | 4 ++-- manifests/kustomization.yaml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 9425bf418..c1291633a 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -56,8 +56,8 @@ kubectl create -f manifests/postgres-operator.yaml # deployment ``` There is a [Kustomization](https://github.com/kubernetes-sigs/kustomize) -manifest that [combines the mentioned resources](../manifests/kustomization.yaml) -(except for the CRD) - it can be used with kubectl 1.14 or newer as easy as: +manifest that [combines the mentioned resources](../manifests/kustomization.yaml). +It can be used with kubectl 1.14 or newer as easy as: ```bash kubectl apply -k github.com/zalando/postgres-operator/manifests diff --git a/manifests/kustomization.yaml b/manifests/kustomization.yaml index 1fa4e3143..2ee91564d 100644 --- a/manifests/kustomization.yaml +++ b/manifests/kustomization.yaml @@ -1,6 +1,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: +- operatorconfiguration.crd.yaml - postgresql-operator-default-configuration.yaml - operator-service-account-rbac.yaml - postgres-operator.yaml