github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v2/content/en/docs/renderers/rawYaml.md (about)

     1  ---
     2  title: "Raw YAML"
     3  linkTitle: "Raw YAML"
     4  weight: 20
     5  featureId: render
     6  aliases: [/docs/pipeline-stages/renderers/rawyaml]
     7  ---
     8  
     9  ## Rendering with raw YAML
    10  
    11  In the case that your project does not currently use a render engine 
    12  (helm, kustomize, kpt, etc), the `rawYaml` renderer should be used.  This instructs
    13  skaffold to only do it's own yaml field replacement (`image:` and `labels:` modifications) and 
    14  not to use any additional render engine.
    15  
    16  ### Configuration
    17  
    18  To use `rawYaml`, add render type `rawYaml` to the `manifests` section of
    19  `skaffold.yaml`.
    20  
    21  The `rawYaml` configuration accepts a list of paths to your manifests with glob syntax supported. 
    22  
    23  ### Example
    24  
    25  The following `manifests` section instructs Skaffold to render
    26  artifacts using `rawYaml`.   Each entry should point to YAML manifest file and supports glob syntax:
    27  
    28  {{% readfile file="samples/renderers/rawYaml.yaml" %}}