mirror of
				https://github.com/prometheus-operator/kube-prometheus.git
				synced 2025-10-31 16:11:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			995 B
		
	
	
	
		
			Jsonnet
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			995 B
		
	
	
	
		
			Jsonnet
		
	
	
	
	
	
| local k = import 'ksonnet/ksonnet.beta.3/k.libsonnet';
 | |
| local statefulSet = k.apps.v1beta2.statefulSet;
 | |
| local toleration = statefulSet.mixin.spec.template.spec.tolerationsType;
 | |
| 
 | |
| {
 | |
|   _config+:: {
 | |
|     tolerations+:: [
 | |
|       {
 | |
|         key: 'key1',
 | |
|         operator: 'Equal',
 | |
|         value: 'value1',
 | |
|         effect: 'NoSchedule',
 | |
|       },
 | |
|       {
 | |
|         key: 'key2',
 | |
|         operator: 'Exists',
 | |
|       },
 | |
|     ]
 | |
|   },
 | |
| 
 | |
|   local withTolerations() = {
 | |
|     tolerations: [
 | |
|       toleration.new() + (
 | |
|       if std.objectHas(t, 'key') then toleration.withKey(t.key) else toleration) + (
 | |
|       if std.objectHas(t, 'operator') then toleration.withOperator(t.operator) else toleration) + (
 | |
|       if std.objectHas(t, 'value') then toleration.withValue(t.value) else toleration) + (
 | |
|       if std.objectHas(t, 'effect') then toleration.withEffect(t.effect) else toleration),
 | |
|       for t in $._config.tolerations
 | |
|     ],
 | |
|   },
 | |
| 
 | |
|   prometheus+: {
 | |
|     prometheus+: {
 | |
|       spec+:
 | |
|         withTolerations(),
 | |
|     },
 | |
|   },
 | |
| } |