From b07ccbc6e04564a760200bc10b5ac89a704298b2 Mon Sep 17 00:00:00 2001 From: Hardy Jones Date: Tue, 27 Aug 2024 06:47:42 -0700 Subject: [PATCH] Fix code block for `kustomized_resources` The code block needs a blank line in order to render properly. Without this blank line, the code is not rendered at all in GitHub. --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index 3a2b4cb..cdaaac8 100644 --- a/README.rst +++ b/README.rst @@ -103,6 +103,7 @@ By default, the kustomization_ rule assumes the :file:`kustomization` file is na This "base" target we've defined doesn't produce any artifacts. It prepares the recipe for building artifacts, in the same way that a :term:`kustomization`'s files are inert input for the :tool:`kustomize` tool. When we'd like to build the :term:`kustomization` using particular options—as we would by invoking :command:`kustomize build`—we define another target in a :file:`BUILD.bazel` file. Here we'll add to the same Bazel package, this time using the kustomized_resources_ rule. .. code:: bazel + load( "@rules_kustomize//kustomize:kustomize.bzl", "kustomized_resources",