18 lines
		
	
	
		
			581 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			581 B
		
	
	
	
		
			YAML
		
	
	
	
---
 | 
						|
apiVersion: config.karmada.io/v1alpha1
 | 
						|
kind: ResourceInterpreterWebhookConfiguration
 | 
						|
metadata:
 | 
						|
  name: examples
 | 
						|
webhooks:
 | 
						|
  - name: workloads.example.com
 | 
						|
    rules:
 | 
						|
      - operations: [ "InterpretReplica","ReviseReplica","Retain","AggregateStatus" ]
 | 
						|
        apiGroups: [ "workload.example.io" ]
 | 
						|
        apiVersions: [ "v1alpha1" ]
 | 
						|
        kinds: [ "Workload" ]
 | 
						|
    clientConfig:
 | 
						|
      url: https://karmada-interpreter-webhook-example.karmada-system.svc:443/interpreter-workload
 | 
						|
      caBundle: {{caBundle}}
 | 
						|
    interpreterContextVersions: [ "v1alpha1" ]
 | 
						|
    timeoutSeconds: 3
 |