From f4eef1dc0bad6b707f07ef3e59045ca32c128cd3 Mon Sep 17 00:00:00 2001 From: Jingfang Liu Date: Wed, 27 Feb 2019 13:26:58 -0800 Subject: [PATCH] update transformerconfigs/crd example --- examples/transformerconfigs/README.md | 1 - examples/transformerconfigs/crd/README.md | 39 +---------------------- 2 files changed, 1 insertion(+), 39 deletions(-) diff --git a/examples/transformerconfigs/README.md b/examples/transformerconfigs/README.md index d18f1e518..292cc3e4b 100644 --- a/examples/transformerconfigs/README.md +++ b/examples/transformerconfigs/README.md @@ -91,6 +91,5 @@ nameReference: Kustomize has a default set of configurations. They can be saved to local directory through `kustomize config save -d`. Kustomize allows modifying those configuration files and using them in kustomization.yaml file. This tutorial shows how to customize those configurations to - [support a CRD type](crd/README.md) -- disabling adding commonLabels to fields in some kind of resources - add extra fields for variable substitution - add extra fields for name reference diff --git a/examples/transformerconfigs/crd/README.md b/examples/transformerconfigs/crd/README.md index 6943c416e..00aee7f80 100644 --- a/examples/transformerconfigs/crd/README.md +++ b/examples/transformerconfigs/crd/README.md @@ -8,38 +8,6 @@ Create a workspace by DEMO_HOME=$(mktemp -d) ``` -### Get the native config as a starting point - -Get the default transformer configurations using this command: - - -``` -kustomize config save -d $DEMO_HOME/kustomizeconfig -``` -The default configurations are saved -in the directory `$DEMO_HOME/kustomizeconfig` as several files - -> ``` -> commonannotations.yaml -> commonlabels.yaml -> nameprefix.yaml -> namereference.yaml -> namespace.yaml -> varreference.yaml -> ``` - -These files contain the field specifications for native resources -that transformation directives like `namePrefix`, `commonLabels`, etc. -need to do their work. - -These default configurations already include some common -field specifictions for all types: - -- nameprefix is added to `.metadata.name` -- namespace is added to `.metadata.namespace` -- labels is added to `.metadata.labels` -- annotations is added to `.metadata.annotations` - ### Adding a custom resource Consider a CRD of kind `MyKind` with fields @@ -51,6 +19,7 @@ Consider a CRD of kind `MyKind` with fields Add the following file to configure the transformers for the above fields ``` +mkdir $DEMO_HOME/kustomizeconfig cat > $DEMO_HOME/kustomizeconfig/mykind.yaml << EOF commonLabels: @@ -148,12 +117,6 @@ in the kustomization file: cat >> $DEMO_HOME/kustomization.yaml << EOF configurations: - kustomizeconfig/mykind.yaml -- kustomizeconfig/commonannotations.yaml -- kustomizeconfig/commonlabels.yaml -- kustomizeconfig/nameprefix.yaml -- kustomizeconfig/namereference.yaml -- kustomizeconfig/namespace.yaml -- kustomizeconfig/varreference.yaml EOF ```