mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-10-31 20:39:14 +00:00
b29ed6b6ed
For fips complaince we need to generate fips compliant images. As part of this change, we will create new kube-bench image which will be fips compliant. Image name follows this tag pattern <version>-ubi-fips
8 lines
71 B
Go
8 lines
71 B
Go
//go:build fipsonly
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "crypto/tls/fipsonly"
|
|
)
|