mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2025-03-04 17:16:05 +00:00

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"
|
|
)
|