Skip to content

Files

Latest commit

bfafab4 · Jan 2, 2025

History

History

k8s_yaml_glob

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 5, 2023
Jan 2, 2025

Kubernetes YAML Glob

Author: Glenn Franxman

Load kubernetes manifests by glob patterns.

Usage

First load the extension like:

load('ext://k8s_yaml_glob', 'k8s_yaml_glob')

Then use it like this:

# all of the .yaml files in the k8s directory.
k8s_yaml_glob('./k8s/*.yaml')  

or like this:

# all of the dev-*.yaml files in the k8s directory and subdirectories.
k8s_yaml_glob('./k8s/**/dev-*.yaml')