mirror of
				https://github.com/prometheus-operator/kube-prometheus.git
				synced 2025-10-31 16:11:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			679 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			679 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| # This script uses arg $1 (name of *.jsonnet file to use) to generate the manifests/*.yaml files.
 | |
| 
 | |
| set -e
 | |
| set -x
 | |
| # only exit with zero if all commands of the pipeline exit successfully
 | |
| set -o pipefail
 | |
| 
 | |
| # Make sure to use project tooling
 | |
| PATH="$(pwd)/tmp/bin:${PATH}"
 | |
| 
 | |
| # Make sure to start with a clean 'manifests' dir
 | |
| rm -rf manifests
 | |
| mkdir -p manifests/setup
 | |
| 
 | |
| # Calling gojsontoyaml is optional, but we would like to generate yaml, not json
 | |
| jsonnet -J vendor -m manifests "${1-example.jsonnet}" | xargs -I{} sh -c 'cat {} | gojsontoyaml > {}.yaml' -- {}
 | |
| 
 | |
| # Make sure to remove json files
 | |
| find manifests -type f ! -name '*.yaml' -delete
 | |
| rm -f kustomization
 | |
| 
 |