mirror of
				https://github.com/edgelesssys/constellation.git
				synced 2025-10-30 19:28:59 -04:00 
			
		
		
		
	 4284f892ce
			
		
	
	
		4284f892ce
		
			
		
	
	
	
	
		
			
			* rename to attestationconfigapi + put client and fetcher inside pkg * rename api/version to versionsapi and put fetcher + client inside pkg * rename AttestationConfigAPIFetcher to Fetcher
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			566 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			566 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
 | |
| 
 | |
| go_library(
 | |
|     name = "cli-k8s-compatibility_lib",
 | |
|     srcs = ["main.go"],
 | |
|     importpath = "github.com/edgelesssys/constellation/v2/hack/cli-k8s-compatibility",
 | |
|     visibility = ["//visibility:private"],
 | |
|     deps = [
 | |
|         "//internal/api/versionsapi",
 | |
|         "//internal/logger",
 | |
|         "//internal/versions",
 | |
|         "@org_uber_go_zap//zapcore",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| go_binary(
 | |
|     name = "cli-k8s-compatibility",
 | |
|     embed = [":cli-k8s-compatibility_lib"],
 | |
|     visibility = ["//visibility:public"],
 | |
| )
 |