mirror of https://github.com/fluxcd/flux2.git
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			601 B
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			29 lines
		
	
	
		
			601 B
		
	
	
	
		
			YAML
		
	
---
 | 
						|
apiVersion: v1
 | 
						|
kind: Secret
 | 
						|
metadata:
 | 
						|
  name: notation-config
 | 
						|
  namespace: my-namespace
 | 
						|
stringData:
 | 
						|
  ca.crt: ca-data-crt
 | 
						|
  trustpolicy.json: |
 | 
						|
    {
 | 
						|
        "version": "1.0",
 | 
						|
        "trustPolicies": [
 | 
						|
            {
 | 
						|
                "name": "fluxcd.io",
 | 
						|
                "registryScopes": [
 | 
						|
                    "*"
 | 
						|
                ],
 | 
						|
                "signatureVerification": {
 | 
						|
                    "level" : "strict"
 | 
						|
                },
 | 
						|
                "trustStores": [ "ca:fluxcd.io" ],
 | 
						|
                "trustedIdentities": [
 | 
						|
                    "*"
 | 
						|
                ]
 | 
						|
            }
 | 
						|
        ]
 | 
						|
    }    
 | 
						|
 |