From 844824e8e98f16384e615aba4bf3ec3c2aa07cfe Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Fri, 15 May 2020 15:04:13 +0000 Subject: [PATCH] Incorporate the "components" suggestion Incorporate the suggestion of the separate "components" field, that will hold references to resources of `Component` kind. Also, add a missing reference to the base, in the Kustomization files of the variants. --- examples/components.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/examples/components.md b/examples/components.md index 84c008aef..8e2a98344 100644 --- a/examples/components.md +++ b/examples/components.md @@ -647,6 +647,9 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: + - ../../base + +components: - ../../components/external_db - ../../components/recaptcha EOF @@ -664,6 +667,9 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: + - ../../base + +components: - ../../components/external_db - ../../components/ldap EOF @@ -681,6 +687,9 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: + - ../../base + +components: - ../../components/external_db #- ../../components/ldap - ../../components/recaptcha